:root {
    --primary: #009eff;
    --primary-light: #009eff;
    --primary-dark: #0062cc;
    --primary-rgb: 0, 158, 255;
    --primary-bg: #e0f2fe;
    --primary-bg-light: #f0f9ff;
}

/* ------------------------------------- */
/* 0: FONT TANIMLAMALARI (Inter) */
/* ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ------------------------------------- */
/* 1: GENEL STİLLER */
/* ------------------------------------- */
body {
    font-family: "Inter", sans-serif !important;
    background-color: #ffffff;
    font-weight: 500;
    overflow-x: hidden;
    word-wrap: break-word;
}
body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, var(--primary-light), var(--primary)); 
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* ------------------------------------- */
/* 2: HEADER ALANI */
/* ------------------------------------- */
.top-gradient-bar {
    height: 5px;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    display: block;
}
.mobile-top-bar {
    height: 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    color: #6c757d;
    font-size: 14px;
}
.mobile-top-bar i {
    font-size: 16px;
    color: #6c757d;
}
.mobile-top-bar .text-orange {
    color: #fd7e14;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.info-bar {
    height: 60px;
    background-color: #ffffff;
    border-bottom: none;
    font-size: 14px;
}
.info-bar .left-menu a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    line-height: 60px;
    padding: 0;
}
.info-bar .left-menu a i {
    color: var(--primary);
    font-size: 1.1em;
}
.info-bar .left-menu a:hover {
    color: var(--primary);
}
.info-bar .separator {
    color: #e9ecef;
    margin: 0 15px;
    line-height: 60px;
    align-self: center;
}
.btn-giris[class*="btn-gradient-"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 18px; 
    border: none;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none; 
    transition: all 0.3s ease;
}
.btn-giris[class*="btn-gradient-"]:hover {
    color: #ffffff;
}
.btn-gradient-dark {
    background-image: linear-gradient(to right, #303544, #151720);
}

.btn-gradient-blue {
    background: var(--primary);
}
.main-nav {
    background-color: #ffffff !important;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: auto; 
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}
.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    animation: slideDown 0.4s ease-out;
    z-index: 1050; 
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (min-width: 992px) {
    .main-nav {
        height: 75px;
    }
}
.main-nav .navbar-brand .logo-img {
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
}
.main-nav .navbar-brand .logo-img:hover {
    opacity: 0.9;
}
@media (max-width: 991.98px) {
    .main-nav .navbar-brand .logo-img {
        height: 35px;
    }
    .main-nav {
        padding: 10px 0;
    }
    .main-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .main-nav .navbar-brand {
        margin-right: 0;
        flex-shrink: 0;
    }
    .mobile-header-actions {
        flex-shrink: 0;
    }
}
.main-nav .navbar-nav .nav-link {
    font-weight: 600; 
    font-size: 16px; 
    color: #333;
    padding: 0 22px; 
    position: relative;
    display: flex;
    align-items: center;
    height: auto; 
    line-height: normal;
    border-radius: 8px; 
    transition: all 0.3s ease;
}
@media (min-width: 992px) {
    .main-nav .navbar-nav .nav-link {
        height: 75px;
        line-height: 75px;
        margin: 0;
        border-radius: 0; 
    }
    .desktop-nav-list {
        flex-direction: row !important;
    }
}
.main-nav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}
.main-nav .navbar-nav .nav-link.active,
.main-nav .navbar-nav .nav-link:hover {
    color: var(--primary);
    background-color: transparent; 
}
.main-nav .dropdown-menu {
    border: 1px solid #f0f0f0; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    border-radius: 8px; 
    padding: 10px 0 0.5rem 0; 
    margin-top: 0 !important; 
    border-top: 3px solid var(--primary); 
}
.main-nav .dropdown-item {
    display: flex; 
    align-items: center;
    gap: 10px; 
    padding: 10px 20px; 
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease-in-out;
}
.main-nav .dropdown-item i {
    color: var(--primary); 
    font-size: 1.1em;
}
.main-nav .dropdown-item:hover {
    background-color: #f8f9fa; 
    color: var(--primary);
    transform: translateX(3px); 
}
.main-nav .dropdown-item:active {
    background-color: #e9ecef;
    color: var(--primary-dark);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .main-nav .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
    .main-nav .navbar-nav .nav-item.dropdown-mega-wrapper:hover .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0px !important; 
    }
    .main-nav .dropdown-mega-wrapper {
        position: static !important;
    }
    .main-nav .dropdown-menu-mega {
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
        transform: none;
        padding: 1.5rem 0;
        background-image: linear-gradient(to bottom, #ffffff, #fcfdff);
        top: 100%;
        margin-top: 0px !important;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        position: absolute;
        display: none;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }
    .main-nav .dropdown-menu-mega > li > .container {
        max-width: 1320px;
        margin: 0;
        margin-left: calc((100vw - 1320px) / 2);
        padding: 0 15px;
    }
}
.main-nav .navbar-nav .nav-link::after {
    display: none; 
}
.main-nav .navbar-nav .dropdown-arrow {
    font-size: 12px; 
    margin-left: 8px;
    color: #888;
    transition: transform 0.3s ease, color 0.3s ease;
}
.main-nav .navbar-nav .nav-link:hover .dropdown-arrow,
.main-nav .navbar-nav .nav-link.active .dropdown-arrow {
    color: var(--primary);
}
.main-nav .navbar-nav .dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}
.main-nav .dropdown-menu-mega .row [class*="col-lg-"] {
    border-right: 1px solid #f0f0f0;
}
.main-nav .dropdown-menu-mega .row [class*="col-lg-"]:last-child {
    border-right: none;
}
.mega-menu-title {
    font-size: 15px;
    font-weight: 700;
    color: #282c3f;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e9ecef;
}
.mega-menu-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.65rem; 
}
.mega-menu-block:hover {
    background-color: #e6f5ff; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb),0.1);
}
.mega-menu-block .icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}
.mega-menu-block .text-box {
    line-height: 1.4;
}
.mega-menu-block .text-box strong {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.mega-menu-block .text-box p {
    font-size: 13px;
    font-weight: 500;
    color: #6d7792;
    margin-bottom: 0;
}
.mega-menu-card {
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden; 
    transition: all 0.3s ease;
    background-color: #f8f9fa; 
}
.mega-menu-card:hover {
    box-shadow: 0 4px 10px rgba(var(--primary-rgb),0.1);
    transform: translateY(-2px);
}
.mega-menu-card .mega-menu-block {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.mega-menu-card:hover .mega-menu-block {
    background-color: #e6f5ff;
}
.mega-menu-action-link {
    display: block;
    padding: 6px 15px; 
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease; 
    background-image: linear-gradient(to right, #303544, #151720);
    color: #ffffff;
}
.mega-menu-action-link:hover {
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(21, 23, 32, 0.3);
    transform: translateY(-1px);
}
.mega-menu-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.mega-menu-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.mega-menu-links li a:hover {
    background-color: #e6f5ff;
    color: var(--primary);
    transform: translateX(3px);
}
.mega-menu-links li a i {
    font-size: 1.1em;
    color: var(--primary);
}
.main-nav .btn.nav-cart-btn-new {
    display: flex;
    align-items: center;
    gap: 8px; 
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px; 
    border: none;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none; 
    transition: all 0.3s ease;
    background: var(--primary);
    position: relative; 
    box-sizing: border-box; 
}
.main-nav .btn.nav-cart-btn-new:hover {
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.main-nav .btn.nav-cart-btn-new i {
    font-size: 1.1em;
}
.main-nav .btn.nav-cart-btn-new span {
    line-height: normal;
}
.main-nav .cart-count-new {
    background-color: #1b1e28; 
    color: white;
    font-size: 12px; 
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px; 
    padding: 0;
    text-align: center;
}
.mobile-cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.mobile-cart-btn:hover {
    background-color: #e9ecef;
    color: var(--primary);
}
.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 11px;
    gap: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.mobile-menu-btn span {
    display: block;
    height: 3px; 
    background-color: #151720; 
    border-radius: 4px; 
    transition: all 0.3s ease;
}
.mobile-menu-btn span:nth-child(2) { 
    width: 20px; 
    background-color: var(--primary); 
} 
.mobile-menu-btn span:nth-child(1) { width: 12px; } 
.mobile-menu-btn span:nth-child(3) { width: 12px; } 
.mobile-menu-btn:hover {
    background-color: #e9ecef;
}
.mobile-menu-btn:hover span,
.mobile-menu-btn:hover span:nth-child(1),
.mobile-menu-btn:hover span:nth-child(3) {
    background-color: var(--primary); 
}
.offcanvas {
    width: 100% !important; 
    border: none;
    background-color: #ffffff;
}
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f4f4f4;
    background-color: #fff;
}
#mobileMenu .offcanvas-header .navbar-brand .logo-img {
    height: 30px !important;
}
.btn-close-custom {
    background: #f3f6fe;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}
.btn-close-custom:hover {
    background: #e6f0ff;
    color: var(--primary);
}
.offcanvas-body {
    padding: 0;
    overflow-y: auto;
}
.mobile-pro-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-pro-menu > li {
    border-bottom: 1px solid #f9f9f9;
}
.pro-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px 20px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fff;
    position: relative;
}
.pro-link:hover, 
.pro-link[aria-expanded="true"] {
    background-color: #ffffff;
    color: var(--primary);
}
.pro-icon {
    width: 40px;
    height: 40px;
    background-color: #f3f6fe;
    color: #6c757d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.2s;
}
.pro-link:hover .pro-icon,
.pro-link[aria-expanded="true"] .pro-icon {
    background-color: #e6f0ff;
    color: var(--primary);
}
.pro-text {
    flex-grow: 1;
}
.pro-arrow {
    font-size: 12px;
    color: #adb5bd;
    transition: transform 0.3s ease;
}
.pro-link[aria-expanded="true"] .pro-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}
.mobile-sub-menu {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    background-color: #f8f9fb;
    border-top: 1px solid #f0f0f0;
}
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    padding-left: 25px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    gap: 12px;
}
.mobile-sub-menu li a .sub-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
    background-color: #e6f0ff;
    border-radius: 6px;
    flex-shrink: 0;
}
.mobile-sub-menu li a .sub-text {
    flex: 1;
}
.mobile-sub-menu li a:hover {
    color: var(--primary);
    background-color: #f1f5f9;
}
.mobile-sub-menu li a:hover .sub-icon {
    background-color: var(--primary);
    color: #fff;
}

/* ------------------------------------- */
/* 3: HERO BANNER ALANI */
/* ------------------------------------- */
#hero-slider {
    height: 590px;
    background: url('../images/banner-bg.png') no-repeat right center / cover;
    background-attachment: fixed;
    display: flex;
}
#hero-slider .carousel-item {
    height: 100%;
}
#hero-slider .carousel-item.active {
    display: flex;
    align-items: center; 
}
#hero-slider .container {
    height: 100%;
}
#hero-slider .caption-text {
    color: #333;
    padding-right: 20px;
    transform: translateY(-5px); 
}
#hero-slider .caption-text .sub-heading {
    font-size: 20px;
    font-weight: 500;
    color: #6d7792;
}
#hero-slider .caption-text .main-heading {
    font-size: 50px;
    font-weight: 800;
    color: #282c3f;
    margin: 10px 0;
}
#hero-slider .caption-text .description {
    font-size: 19px;
    color: #6d7792;
    font-weight: 500;
    max-width: 450px;
    margin: 0;
}
.features-row-flex {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    color: #444;
    justify-content: flex-start;
}
#hero-slider .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    width: 50%;
    padding-right: 15px;
    box-sizing: border-box;
}
#hero-slider .features-row-flex .feature-item:nth-child(2n) {
    padding-right: 0;
}
#hero-slider .features-row-flex .feature-item:nth-child(n+3) {
    margin-top: 1rem;
}
#hero-slider .feature-item i {
    font-size: 30px;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#hero-slider .feature-item span {
    line-height: 1.3;
    text-align: left;
}
#hero-slider .features-slide-1 .feature-item i,
#hero-slider .features-slide-2 .feature-item i,
#hero-slider .features-slide-3 .feature-item i {
    color: #1e222d;
    background-color: rgba(35,38,51,0.2);
}
#hero-slider .package-btn {
    background: linear-gradient(to right, #303544, #151720);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#hero-slider .package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(21,23,32,0.4);
}
#hero-slider .package-btn i {
    font-size: 1.1em;
}
#hero-slider .slide-image {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    margin-left: auto; 
    margin-right: 0;
    margin-top: 0;
    position: relative;
    animation: floatAnimation 5s ease-in-out infinite;
}
@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.slider-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #303544;
    position: relative;
    z-index: 10; 
}
.slider-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    width: 0%; 
}
.slider-progress-bar.filling {
    animation: fillProgressBar 10s linear forwards;
}
@keyframes fillProgressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}
.announcement-bar {
    height: auto;
    min-height: 50px;
    background: linear-gradient(to right, #303544, #151720);
    font-size: 16px;
    padding: 10px 0;
}
.announcement-bar p {
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}
.announcement-bar .coupon-code {
    background-color: #ffffff;
    color: #1e222d;
    font-weight: 800; 
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 1.1em;
    margin-left: 10px;
    flex-shrink: 0;
}

/* ------------------------------------- */
/* 6: SECTION HEADER STYLES */
/* ------------------------------------- */
.section-header-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-align: center;
    margin: 0 auto;
}
.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: 40px; 
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary));
    margin: 0 auto 25px auto;
    border-radius: 10px;
}
.section-description {
    font-size: 18px;
    color: #64748b;
    max-width: 800px; 
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* ------------------------------------- */
/* 7: MODERN DOMAIN SORGULAMA ALANI */
/* ------------------------------------- */
.modern-domain-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #171923; 
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    border-bottom: 1px solid #1e293b;
}
.modern-search-wrapper {
    background: rgba(255, 255, 255, 0.05); 
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
.modern-search-wrapper:focus-within {
    box-shadow: 0 15px 45px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}
.modern-search-input {
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 17px;
    color: #ffffff; 
    width: 100%;
    font-weight: 500;
    outline: none !important;
}
.modern-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}
/* Focus (Tıklama) Durumu Düzenlemesi */
.modern-search-input:focus {
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
}
.btn-modern-search {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.btn-modern-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
    color: white;
}
.tld-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}
.tld-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}
.tld-name {
    font-size: 20px;
    font-weight: inherit;
    margin-bottom: 8px;
    display: block;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.tld-price {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 700;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
}
.domain-hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}
.feature-check-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: transform 0.2s;
    position: relative;
    z-index: 2;
}
.feature-check-item:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: var(--primary);
}
.feature-check-item i {
    font-size: 1.2rem;
    color: #34d399; /* Yeşil tik */
}

/* ------------------------------------- */
/* 8: PAKETLER (ARKA PLAN - GRADIENT + NOKTASIZ) */
/* ------------------------------------- */
.clean-packages-section {
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: #f8fafc;
    background-image: linear-gradient(120deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.clean-card {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
}
.clean-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #e2e8f0;
}
.clean-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.12);
}
.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-bottom-left-radius: 16px;
    box-shadow: -2px 2px 10px rgba(var(--primary-rgb),0.3);
}
.card-top {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 25px;
}
.clean-title {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}
.clean-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.clean-price {
    margin-top: 15px;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.clean-price .currency {
    font-size: 22px;
    margin-top: 8px;
    color: #64748b;
}
.clean-price .period {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 12px;
}
.old-price-text {
    color: #94a3b8;
    font-size: 15px;
    text-decoration: line-through;
    margin-top: -5px;
    display: block;
    font-weight: 500;
}
.discount-badge-pill {
    display: inline-block;
    background-color: #dcfce7; 
    color: #166534; 
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-features {
    flex-grow: 1; 
    margin-bottom: 30px;
}
.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.card-features ul li {
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-features ul li i {
    color: var(--primary);
    font-size: 18px; 
    background-color: rgba(var(--primary-rgb), 0.08);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.btn-clean-outline {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
    background-color: transparent;
}
.btn-clean-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-bg-light);
    transform: translateY(-2px);
}
.btn-clean-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    margin-top: 10px;
    backface-visibility: hidden;
}
.btn-clean-primary:hover {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    filter: brightness(0.98);
}
.card-footer-logo {
    margin-top: 20px;
    text-align: center; 
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: #94a3b8; 
    border-top: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: default; 
}
.clean-card:hover .card-footer-logo i {
    color: #f59e0b; /* Amber */
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
}

/* --- HOME PACKAGES V2 (COREX) --- */
.home-packages-v2 {
    padding-top: 90px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
    border-top: 1px solid #e5edf8;
    border-bottom: 1px solid #e5edf8;
}
.home-packages-v2 .home-package-card {
    border: 1px solid #d9e5f7;
    border-radius: 22px;
    background: #fff;
    padding: 0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-packages-v2 .home-package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-bg);
    box-shadow: 0 22px 44px rgba(var(--primary-rgb), 0.16);
}
.home-packages-v2 .home-package-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 24px 44px rgba(13, 110, 253, 0.2);
}
.home-packages-v2 .home-package-card .popular-tag {
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 999px;
    border-bottom-left-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .45px;
    text-transform: uppercase;
    line-height: 1.1;
    box-shadow: -2px 2px 10px rgba(var(--primary-rgb),0.3);
}

.home-packages-v2 .home-package-window {
    display: none;
}
.home-packages-v2 .home-package-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.home-packages-v2 .home-package-main {
    padding: 22px 20px 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    position: relative;
}

.home-packages-v2 .home-package-top {
    text-align: left;
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.home-packages-v2 .home-package-top .discount-badge-pill {
    margin: 0 0 10px;
    background: #eafaf0;
    color: #0f766e;
    border: 1px solid #bcefd0;
}
.home-packages-v2 .home-package-top .clean-title {
    margin: 0 0 6px;
    padding-left: 10px;
    font-size: 23px;
    line-height: 1.15;
    color: #0f172a;
}
.home-packages-v2 .home-package-top .clean-subtitle {
    margin: 0 0 14px;
    padding-left: 10px;
    color: #64748b;
    font-size: 14px;
    min-height: 40px;
}

.home-packages-v2 .home-package-features {
    margin: 0;
}
.home-packages-v2 .home-package-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.home-packages-v2 .home-package-features ul li {
    margin: 0;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #eaf1fc;
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-packages-v2 .home-package-features ul li i {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f2ff;
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.home-packages-v2 .home-package-side {
    border-top: 1px solid #e8eef9;
    background: #f4f8ff;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
}
.home-packages-v2 .home-package-price-wrap {
    text-align: left;
    padding-left: 10px;
}
.home-packages-v2 .home-package-price-wrap .clean-price {
    margin: 0;
    justify-content: flex-start;
    line-height: 1;
    font-size: 36px;
    letter-spacing: -.8px;
}
.home-packages-v2 .home-package-price-wrap .clean-price .currency {
    margin-top: 3px;
    font-size: 19px;
}
.home-packages-v2 .home-package-price-wrap .clean-price .period {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}
.home-packages-v2 .home-package-price-wrap .old-price-text {
    margin-top: 2px;
    display: block;
    font-size: 12px;
}

.home-packages-v2 .home-package-cta {
    min-width: 136px;
}
.home-packages-v2 .home-package-cta .btn {
    width: 100%;
    margin-top: 0;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 12px;
    font-weight: 700;
}
.home-packages-v2 .home-package-card .card-footer-logo {
    margin-top: auto;
    padding: 12px 16px 14px;
    border-top: 1px solid #e8eef9;
}
.home-packages-v2 .home-package-card .card-footer-logo strong {
    color: #475569;
}

@media (max-width: 1199.98px) {
    .home-packages-v2 .home-package-side {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .home-packages-v2 .home-package-price-wrap {
        text-align: center;
    }
    .home-packages-v2 .home-package-price-wrap .clean-price {
        justify-content: center;
        font-size: 34px;
    }
    .home-packages-v2 .home-package-cta {
        min-width: 0;
    }
}
@media (max-width: 767.98px) {
    .home-packages-v2 {
        padding-top: 70px;
        padding-bottom: 78px;
    }
    .home-packages-v2 .home-package-card {
        border-radius: 18px;
    }
    .home-packages-v2 .home-package-main {
        padding: 18px 16px 14px;
    }
    .home-packages-v2 .home-package-top .clean-title {
        font-size: 21px;
    }
    .home-packages-v2 .home-package-top .clean-subtitle {
        min-height: 0;
    }
    .home-packages-v2 .home-package-side {
        padding: 12px 14px;
    }
    .home-packages-v2 .home-package-price-wrap .clean-price {
        font-size: 32px;
    }
    .home-packages-v2 .home-package-card .card-footer-logo {
        padding: 11px 14px 13px;
    }
}

/* --- YENİ MODERN "NEDEN BİZ" BÖLÜMÜ (BEYAZ & FERAH) --- */
.why-modern-section {
    padding: 100px 0; 
    background-color: #ffffff; /* Beyaz zemin */
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}
/* Arkaplan süsleri (isteğe bağlı) */
.why-modern-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.modern-feature-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex; 
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.modern-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-bg);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.08);
}

.feature-icon-gradient {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-bg-light); /* Çok açık mavi */
    color: var(--primary); 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-bg);
}

.modern-feature-card:hover .feature-icon-gradient {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b; /* Koyu metin */
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    margin-top: 0;
}

.feature-desc {
    color: #64748b; /* Orta gri metin */
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- MARKALAR ALANI --- */
.software-brands-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #ffc107
}
.brand-section-title {
    font-weight: 800;
    color: #282c3f;
    margin-bottom: 10px;
    font-size: 32px; 
    display: inline-block;
}
.brand-section-desc {
    color: #6c757d;
    font-size: 1.1rem;
}
.brand-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.brand-box img {
    max-height: 45px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary);
}
.brand-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ------------------------------------- */
/* 10: FOOTER ALANI (PROFESYONEL) */
/* ------------------------------------- */
.main-footer {
    background-color: #0f1119;
    color: #94a3b8;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}
.footer-desc {
    color: #808a9d;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
    max-width: 350px;
}
@media (min-width: 992px) {
    .footer-left-col {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 60px;
    }
}
.btn-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 320px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-footer .btn-label {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}
.btn-footer .btn-sub-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
}
.btn-icon-circle {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
}
.btn-footer-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    border-color: rgba(255,255,255,0.3);
}
.btn-footer-primary:hover .btn-icon-circle {
    transform: rotate(15deg) scale(1.1);
    background-color: #fff;
    color: var(--primary);
}
.btn-footer-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-footer-dark:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.social-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
}
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
}
.social-btn i {
    display: inline-block !important;
    line-height: 1;
    opacity: 1 !important;
    visibility: visible !important;
}
.social-btn:hover {
    background-color: var(--primary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
    border-color: var(--primary);
}
.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
    padding: 0;
    border: none;
}
.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.footer-links li a:hover {
    color: #fff;
    transform: translateX(4px);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.footer-links li a::before {
    content: '\F285'; 
    font-family: 'bootstrap-icons';
    font-size: 10px;
    opacity: 0;
    margin-right: 0px;
    transition: all 0.2s ease;
    width: 0;
    color: var(--primary);
}
.footer-links li a:hover::before {
    opacity: 1;
    margin-right: 6px;
    width: auto;
}
.footer-btk-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 25px;
    backdrop-filter: blur(5px);
}
.btk-content {
    display: flex;
    align-items: center;
    color: #b0b8c4;
    font-size: 13px;
    line-height: 1.5;
}
.btk-content strong {
    color: #fff;
}
.footer-bottom {
    background-color: #0b0d14; 
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.copyright-text {
    color: #64748b;
    font-size: 13px;
}
.copyright-text strong {
    color: #e2e8f0;
}
.payment-text {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.payment-methods i {
    transition: all 0.3s ease;
    cursor: pointer;
}
.payment-methods i:hover {
    color: #fff !important;
    transform: scale(1.1);
}
.divider-vertical {
    width: 1px;
    height: 15px;
    background-color: rgba(255,255,255,0.1);
}

/* --- Responsive Ayarları --- */
@media (max-width: 991.98px) {
    body {
        word-wrap: break-word;
    }
    /* Mobil Header Düzeni */
    .main-nav .navbar-brand .logo-img {
        height: 40px;
    }
    .mobile-cart-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .mobile-menu-btn {
        width: 46px;
        height: 46px;
        padding-left: 12px;
    }
    .mobile-cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    #hero-slider {
        height: auto;
        padding: 50px 0;
        background-attachment: scroll;
        text-align: center;
        background-position: center center;
    }
    #hero-slider .carousel-item.active {
        display: block; 
    }
    #hero-slider .container .row {
        text-align: center;
        flex-direction: column-reverse;
    }
    #hero-slider .caption-text {
        padding: 0 15px;
        transform: translateY(0);
        margin-top: 30px;
    }
    #hero-slider .caption-text .sub-heading {
        font-size: 16px;
    }
    #hero-slider .caption-text .main-heading {
        font-size: 32px;
    }
    #hero-slider .caption-text .description {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    #hero-slider .package-btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #hero-slider .slide-image {
        max-height: 300px;
        margin: 0 auto;
        animation: none;
    }
    .features-row-flex {
        flex-direction: column;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
        align-items: center; 
        justify-content: center;
        text-align: center;
    }
    #hero-slider .feature-item {
        width: 100%; 
        padding: 10px 0;
        max-width: 300px; 
        margin: 0 auto;
        justify-content: flex-start; 
        padding-left: 10%; 
    }
    #hero-slider .feature-item span {
        text-align: left;
    }
    #hero-slider .features-row-flex .feature-item:nth-child(2n) {
        padding-right: 0;
    }
    #hero-slider .features-row-flex .feature-item:nth-child(n+3) {
        margin-top: 0rem;
    }
    .announcement-bar {
        height: auto; 
        padding: 10px 15px;
        text-align: center;
    }
    .announcement-bar p {
        flex-direction: row;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
        gap: 8px;
        flex-wrap: wrap;
    }
    .announcement-bar p i {
        margin-right: 0;
    }
    .announcement-bar .coupon-code {
        margin-left: 6px;
        margin-top: 0;
        font-size: 1em;
    }
    .clean-packages-section {
        padding-top: 60px;
        padding-bottom: 60px;
        background-color: #f3f4f8;
        position: relative;
    }
    .why-modern-section {
        padding: 60px 0;
    }
    .home-packages-v2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 30px; 
    }
    .section-description {
        font-size: 16px;
    }
    .clean-card {
        margin-bottom: 20px;
    }
    .clean-card:hover {
        transform: translateY(-5px);
    }
    .why-choose-section {
        padding: 80px 0 60px 0;
    }
    .modern-feature-card {
        margin-bottom: 20px;
    }
    .modern-feature-card:hover {
        transform: translateY(-5px);
    }
    .software-brands-section {
        padding: 50px 0;
    }
    .brand-section-title {
        font-size: 24px;
    }
    .brand-box {
        height: 80px;
        padding: 15px;
    }
    .footer-left-col {
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-brand {
        justify-content: center;
        display: flex;
    }
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-actions {
        align-items: center;
    }
    .social-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-actions .btn-footer {
        max-width: 100%; 
        width: 100%;
    }
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
    .modern-domain-section {
        padding: 40px 0 50px 0;
    }
    .modern-domain-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .modern-domain-section > .container > .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }
    .modern-domain-section .col-lg-6:first-child {
        padding-right: 0;
        padding-left: 0;
    }
    .modern-search-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .modern-search-input {
        min-width: 0;
    }
    .modern-domain-section .col-lg-6:first-child .mb-2 {
        font-size: 11px !important;
    }
    .modern-domain-section .col-lg-6:first-child h4 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    .domain-hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .modern-search-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 14px;
        gap: 8px;
        align-items: center;
    }
    .modern-search-wrapper > i {
        font-size: 1rem !important;
        padding-left: 8px !important;
        flex-shrink: 0;
    }
    .modern-search-input {
        flex: 1;
        min-width: 0;
        text-align: left;
        padding: 10px 8px;
        font-size: 14px !important;
    }
    .btn-modern-search {
        width: 100%;
        flex-basis: 100%;
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 5px;
    }
    /* Popüler uzantılar - mobil */
    .modern-domain-section .row-cols-lg-6 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }
    .tld-card-modern {
        padding: 12px 8px;
        border-radius: 10px;
    }
    .tld-name {
        font-size: 14px !important;
    }
    .tld-price {
        font-size: 11px !important;
    }
    /* Sağ kolon mobilde gizle veya küçült */
    .modern-domain-section .col-lg-6.ps-lg-5 {
        display: none;
    }
    .modern-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-icon-gradient {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 575.98px) {
    /* Mobil Header - Küçük Ekranlar */
    .main-nav .navbar-brand .logo-img {
        height: 36px;
    }
    .mobile-cart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        padding-left: 11px;
        gap: 4px;
    }
    .mobile-menu-btn span {
        height: 3px;
    }
    .mobile-menu-btn span:nth-child(2) {
        width: 18px;
    }
    .mobile-menu-btn span:nth-child(1),
    .mobile-menu-btn span:nth-child(3) {
        width: 11px;
    }
    .mobile-cart-badge {
        width: 17px;
        height: 17px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
    .mobile-header-actions {
        gap: 8px !important;
    }
    .mobile-top-bar {
        height: 45px;
    }
    .mobile-top-bar i {
        font-size: 15px;
    }
    #hero-slider .caption-text {
        text-align: center;
    }
    .features-row-flex {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #hero-slider .feature-item {
        width: 90%; 
        margin: 0 auto;
        justify-content: flex-start;
        padding-left: 10%; 
    }
    #hero-slider .feature-item span {
        text-align: left;
    }
    #hero-slider .caption-text .main-heading {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .clean-packages-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .why-modern-section {
        padding: 40px 0;
    }
    .home-packages-v2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .home-packages-v2 .home-package-cta {
        min-width: 0;
        width: 100%;
    }
    /* 576px altı domain arama - ekstra kompakt */
    .modern-domain-section {
        padding: 30px 0 40px 0;
    }
    .modern-domain-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .modern-domain-section > .container > .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }
    .modern-domain-section .col-lg-6:first-child {
        padding-left: 0;
        padding-right: 0;
    }
    .modern-domain-section .col-lg-6:first-child h4 {
        font-size: 18px !important;
    }
    .modern-search-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .modern-search-input {
        min-width: 0;
    }
    .modern-search-wrapper {
        padding: 8px;
        border-radius: 12px;
    }
    .modern-search-wrapper > i {
        font-size: 0.9rem !important;
        padding-left: 6px !important;
    }
    .modern-search-input {
        padding: 8px 6px;
        font-size: 13px !important;
    }
    .btn-modern-search {
        padding: 10px 16px;
        font-size: 13px;
    }
    .tld-card-modern {
        padding: 10px 6px;
    }
    .tld-name {
        font-size: 12px !important;
    }
    .tld-price {
        font-size: 10px !important;
    }
    /* Sosyal ikonlar mobil */
    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 400px) {
    /* Çok Küçük Ekranlar */
    .main-nav .navbar-brand .logo-img {
        height: 32px;
    }
    .mobile-cart-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
        border-radius: 6px;
    }
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        padding-left: 10px;
        border-radius: 6px;
    }
    .mobile-header-actions {
        gap: 6px !important;
    }
    .main-nav {
        padding: 8px 0;
    }
    /* 400px altı domain arama */
    .modern-domain-section {
        padding: 25px 0 35px 0;
    }
    .modern-domain-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .modern-domain-section > .container > .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }
    .modern-domain-section .col-lg-6:first-child {
        padding-left: 0;
        padding-right: 0;
    }
    .modern-domain-section .col-lg-6:first-child h4 {
        font-size: 16px !important;
    }
    .modern-search-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .modern-search-wrapper > i {
        display: none;
    }
    .modern-search-input {
        font-size: 12px !important;
        padding: 8px;
        min-width: 0;
    }
    .btn-modern-search {
        font-size: 12px;
        padding: 10px 12px;
    }
    .modern-domain-section .row-cols-3 {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 8px;
    }
    .tld-card-modern {
        padding: 8px 4px;
        border-radius: 8px;
    }
    .tld-name {
        font-size: 11px !important;
    }
    .tld-price {
        font-size: 9px !important;
    }
}

/* ====================================================== */
/* EK: İLETİŞİM VE BANKA SAYFALARI (style.css'e Ekle)     */
/* ====================================================== */

.reference-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 16px;
}
.reference-grid .anascriptlist {
    margin: 0;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
    text-align: left;
}
.reference-grid .anascriptlist:hover {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}
.reference-grid .anascriptlist img {
    border-radius: 18px;
}
.reference-grid .padding5 {
    padding: 14px 16px 18px;
}
.reference-grid .anascriptlist h4 {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 0;
    color: #0f172a;
    line-height: 1.35;
}
.reference-grid .anascriptlist h4 strong {
    font-weight: 600;
}
.reference-grid .anascriptlist h4 span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}
.reference-grid .scripthoverinfo {
    position: absolute;
    top: 12px;
    right: 12px;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.reference-grid .scripthoverinfo a {
    margin: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 14px;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
    transition: all 0.2s ease;
}
.reference-grid .scripthoverinfo a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.reference .referenceselect {
    float: none;
    width: 100%;
    margin: 0 0 16px;
    display: flex;
    justify-content: flex-end;
}
.reference .referenceselect select {
    width: 240px;
    max-width: 100%;
    font-size: 13px;
    padding: 8px 36px 8px 12px;
    border-radius: 10px;
}
@media (max-width: 575.98px) {
    .reference .referenceselect {
        justify-content: center;
    }
    .reference .referenceselect select {
        width: 100%;
    }
}

.license-verify.float-none,
.scriptdetayinfo.float-none,
.scriptrightside.float-none {
    float: none !important;
}

.reference-detail-layout .scriptrightside h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.reference-detail-block {
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}
.reference-detail-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.reference-detail-layout .paypasbutonlar {
    float: none;
    margin: 0;
}
.reference-detail-layout .paypasbutonlar a {
    float: none;
}


/* --- GENEL İÇ SAYFA BAŞLIĞI --- */
.page-header-simple {
    background-color: #0f172a;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.badge-pill-custom {
    background: rgba(255, 255, 255, 0.1); 
    color: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

/* --- SOL SIDEBAR MENÜ (GÖRSELE BİREBİR UYGUN TASARIM) --- */

/* Menü Dış Kutusu */
.corp-sidebar {
    background: #ffffff;
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); 
    border: 1px solid #f1f5f9; 
    padding: 10px 0; 
}

/* Linklerin Genel Yapısı */
.corp-sidebar-link {
    display: flex;
    align-items: center;
    padding: 16px 25px; 
    color: #64748b; 
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc; 
    transition: all 0.2s ease-in-out;
    background-color: transparent;
    margin: 0 10px; 
    border-radius: 8px; 
}

/* Son linkin altındaki çizgiyi kaldır */
.corp-sidebar-link:last-child {
    border-bottom: none;
}

/* Mouse ile üzerine gelince (Hover) */
.corp-sidebar-link:hover {
    background-color: var(--primary-bg-light); 
    color: var(--primary); 
    transform: translateX(5px); 
}

/* Aktif Sayfa (TAM MAVİ BLOK) */
.corp-sidebar-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important; 
    color: #ffffff !important; 
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3); 
    border-bottom: none;
}

/* Aktif linkin üzerine gelince */
.corp-sidebar-link.active:hover {
    transform: none; 
}

/* Sidebar Sabitleme (Sticky) */
.sticky-sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 110px; 
    z-index: 99;
}

.corp-content-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
}

/* --- PAGE DETAIL NORMAL (COREX) --- */
.page-detail-normal .page-detail-main-section {
    background: linear-gradient(180deg, #f8faff 0%, #f3f8ff 100%);
}
.page-detail-normal .normal-detail-content {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #cfe0f8;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}
.page-detail-normal .normal-detail-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.85;
}
.page-detail-normal .normal-detail-text h1,
.page-detail-normal .normal-detail-text h2,
.page-detail-normal .normal-detail-text h3,
.page-detail-normal .normal-detail-text h4,
.page-detail-normal .normal-detail-text h5,
.page-detail-normal .normal-detail-text h6 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 14px;
}
.page-detail-normal .normal-detail-text h1 { font-size: clamp(30px, 4vw, 42px); }
.page-detail-normal .normal-detail-text h2 { font-size: clamp(25px, 3.2vw, 34px); }
.page-detail-normal .normal-detail-text h3 { font-size: clamp(22px, 2.8vw, 28px); }
.page-detail-normal .normal-detail-text p {
    margin-bottom: 14px;
    color: #475569;
}
.page-detail-normal .normal-detail-text ul,
.page-detail-normal .normal-detail-text ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.page-detail-normal .normal-detail-text li {
    margin-bottom: 8px;
}
.page-detail-normal .normal-detail-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.page-detail-normal .normal-detail-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.page-detail-normal .normal-detail-text blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--primary-light);
    background: var(--primary-bg-light);
    border-radius: 0 10px 10px 0;
}
.page-detail-normal .normal-detail-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.page-detail-normal .normal-detail-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid #e2e8f0;
}
.page-detail-normal .normal-detail-text table th,
.page-detail-normal .normal-detail-text table td {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
}
.page-detail-normal .normal-detail-text pre,
.page-detail-normal .normal-detail-text code {
    border-radius: 8px;
}
.page-detail-normal .normal-detail-sidebar {
    border-radius: 16px;
    border: 1px solid #dbe7f8;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
    padding: 12px 0;
}
.page-detail-normal .normal-detail-sidebar .corp-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px 8px;
    border: 1px solid #ecf2fc;
    background: #fff;
    color: #334155;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 14px;
    transform: none;
}
.page-detail-normal .normal-detail-sidebar .corp-sidebar-link:hover {
    background: var(--primary-bg-light);
    color: var(--primary);
    border-color: #d2e5ff;
    transform: translateX(4px);
}
.page-detail-normal .normal-detail-sidebar .corp-sidebar-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-color: var(--primary);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.26);
}
.page-detail-normal .normal-detail-link-arrow {
    font-weight: 700;
    opacity: .9;
}
.page-detail-normal .normal-detail-sticky {
    top: 112px;
}
.page-detail-normal .normal-detail-sidebar-mobile-toggle {
    margin-bottom: 10px;
}
.page-detail-normal .normal-detail-mobile-toggle {
    border: 1px solid #dbe7ff;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}
.page-detail-normal .normal-detail-mobile-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.page-detail-normal .normal-detail-mobile-home {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eaf2ff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.page-detail-normal .normal-detail-mobile-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.page-detail-normal .normal-detail-mobile-title {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: .2px;
}
.page-detail-normal .normal-detail-mobile-subtitle {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.page-detail-normal .normal-detail-mobile-toggle-right {
    font-size: 18px;
    color: var(--primary);
    opacity: .9;
    flex-shrink: 0;
}
.page-detail-normal .normal-detail-mobile-toggle[aria-expanded="true"] .normal-detail-mobile-toggle-right {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .page-detail-normal .page-detail-main-section {
        padding-top: 28px !important;
        background: #eef4ff;
    }

    .page-detail-normal .normal-detail-sidebar-col {
        margin-top: 0;
    }

    .page-detail-normal .normal-detail-sticky {
        top: auto;
    }

    .page-detail-normal .normal-detail-content {
        padding: 24px !important;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    }

    .page-detail-normal .normal-detail-sidebar-collapse {
        margin-top: 8px;
    }

    .page-detail-normal .normal-detail-sidebar-collapse .normal-detail-sidebar {
        border-radius: 14px;
        border: 1px solid #e5edf8;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }
}

.corp-heading {
    font-size: 1.5rem; font-weight: 700; color: #1e293b;
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

/* Kurumsal Bilgi Kutusu */
.company-info-box {
    background-color: #eef2f6;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border: 1px dashed #cbd5e1;
}
.company-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #475569;
}
.company-info-item strong {
    color: #1e293b;
}

/* İşlem Adımları (Timeline) */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    gap: 20px;
}
.p-step {
    text-align: center;
    position: relative;
    flex: 1;
}
.p-step-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.p-step:hover .p-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-5px);
}
.p-step h5 { font-size: 1rem; font-weight: 700; color: #334155; margin-bottom: 5px; }
.p-step p { font-size: 0.85rem; color: #94a3b8; line-height: 1.4; }


/* --- İLETİŞİM SAYFASI STİLLERİ --- */
.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-info-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    border: 1px solid #eef2f6;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #eef2f6;
}

.contact-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-card .c-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .c-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(15deg);
}

.contact-card .c-text span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-card .c-text strong {
    font-size: 16px;
    color: #1e293b;
    line-height: 1.5;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
}

/* İletişim Formu Özel Stilleri */
.form-label-styled {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.form-control-modern {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    font-size: 15px;
    color: #334155;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.btn-send-hover {
    transition: all 0.3s ease;
}

.btn-send-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

/* Map Banner Stilleri (İletişim) */
.contact-map-banner {
    width: 100%;
    height: 450px;
    position: relative;
    background-color: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}
.contact-map-banner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(100%); 
    transition: all 0.5s ease;
}
.contact-map-banner:hover iframe {
    filter: grayscale(0%);
}

/* Yüzen İletişim Kartları */
.contact-float-cards {
    position: relative;
    margin-top: -80px; 
    z-index: 10;
    margin-bottom: 60px;
}
.c-float-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}
.c-float-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}
.c-float-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}
.c-float-box:hover .c-float-icon {
    background: var(--primary);
    color: #ffffff;
}
.c-float-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}
.c-float-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
.c-float-link {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* --- HAKKIMIZDA SAYFASI STİLLERİ --- */

/* İstatistik Kutuları */
.stat-card {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary);
}
.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-block;
}
.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* Değerler Kutusu (Value Card) */
.value-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #e2e8f0;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #e2e8f0;
    transition: 0.3s;
}
.value-card:hover::before {
    background: var(--primary);
}
.vc-icon {
    width: 50px; height: 50px;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: 0.3s;
}
.value-card:hover .vc-icon {
    background: var(--primary);
    color: #fff;
}
.vc-title { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.vc-desc { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0; }

/* Hakkımızda Ekstra Stiller */
.values-list { list-style: none; padding: 0; margin: 0; }
.values-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: #475569; font-size: 0.95rem; }
.values-list li i { position: absolute; left: 0; top: 2px; color: #10b981; font-size: 1.2rem; }
.vm-card { background: #f8fafc; border-left: 5px solid var(--primary); padding: 25px; border-radius: 0 12px 12px 0; margin-bottom: 20px; }
.vm-title { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vm-text { font-size: 0.95rem; color: #475569; line-height: 1.7; margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.value-item { display: flex; gap: 15px; }
.v-icon { width: 40px; height: 40px; background: var(--primary-bg); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.v-content h5 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 5px; }
.v-content p { font-size: 0.85rem; color: #64748b; line-height: 1.5; margin: 0; }
.loc-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--primary-light); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px; display: inline-block; margin-bottom: 15px; text-transform: uppercase; }
.loc-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 2; }
.loc-desc { font-size: 0.9rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 0; position: relative; z-index: 2; }
.location-card { background: linear-gradient(135deg, #0f172a 0%, #334155 100%); color: #ffffff; border-radius: 16px; padding: 30px; height: 100%; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15); transition: transform 0.3s ease; }
.location-card:hover { transform: translateY(-5px); }
.location-card::before { content: '\F3EE'; font-family: 'bootstrap-icons'; position: absolute; right: -20px; bottom: -30px; font-size: 120px; color: #ffffff; opacity: 0.05; transform: rotate(-20deg); }
.infra-box { background: #ffffff; border: 1px solid #eef2f6; border-radius: 16px; padding: 25px; height: 100%; transition: all 0.3s ease; border-bottom: 4px solid transparent; }
.infra-box:hover { border-color: #e2e8f0; border-bottom-color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.06); transform: translateY(-5px); }
.infra-icon { width: 60px; height: 60px; background: var(--primary-bg-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; transition: all 0.3s ease; }
.infra-box:hover .infra-icon { background: var(--primary); color: #ffffff; transform: rotate(10deg); }
.infra-title { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.infra-desc { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin-bottom: 0; }
.timeline { position: relative; padding-left: 30px; border-left: 2px solid #e2e8f0; margin-top: 20px; }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -36px; top: 5px; width: 14px; height: 14px; background: var(--primary); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2); }
.timeline-date { font-size: 0.85rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; display: block; }
.timeline-title { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.timeline-text { font-size: 0.95rem; color: #475569; line-height: 1.6; }
.tech-badge { background: #fff; border: 1px solid #f1f5f9; padding: 15px; border-radius: 8px; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.tech-badge:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.tech-badge i { font-size: 1.5rem; color: #0f172a; margin-bottom: 10px; display: block; }
.tech-badge span { font-size: 0.85rem; font-weight: 600; color: #64748b; }
.story-intro { background: linear-gradient(135deg, var(--primary-bg-light) 0%, var(--primary-bg) 100%); border-left: 5px solid var(--primary); padding: 30px; border-radius: 0 12px 12px 0; margin-bottom: 40px; }
.contract-text p { margin-bottom: 15px; line-height: 1.7; color: #555; }
.contract-text h4 { color: #1e293b; font-weight: 700; margin-top: 30px; margin-bottom: 15px; font-size: 1.1rem; }
.contract-text ul { margin-bottom: 20px; padding-left: 20px; color: #555; }
.contract-text ul li { margin-bottom: 8px; }

/* --- BANKA HESAPLARI SAYFASI STİLLERİ --- */

/* Yeni Liste Tipi Banka Tasarımı (Alt Alta) */
.bank-list-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-left: 5px solid #ccc; /* Varsayılan renk, sınıflarla ezilir */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px; /* Kartlar arası boşluk */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.bank-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

/* Banka Renkleri */
.border-akbank { border-left-color: #E10600; }
.border-garanti { border-left-color: #00964E; }
.border-isbank { border-left-color: #1F4E97; }
.border-qnb { border-left-color: #842B82; }

/* Sol: Logo Alanı */
.bli-logo-area {
    flex: 0 0 180px; 
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid #f1f5f9;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px; 
}

.bli-logo {
    max-width: 100%;
    object-fit: contain;
}

/* Orta: Bilgi Alanı */
.bli-info-area {
    flex-grow: 1;
}

.bli-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    display: block;
}

.bli-sub {
    font-size: 13px;
    color: #64748b;
    display: flex;
    gap: 15px;
}

.bli-sub span strong { color: #475569; }

/* Sağ: IBAN Alanı */
.bli-iban-area {
    flex: 0 0 340px; 
    text-align: right;
    padding-left: 20px;
}

.bli-iban-box {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bli-iban-text {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #334155;
    font-size: 15px;
    letter-spacing: -0.5px;
    white-space: nowrap; 
}

.btn-copy-list {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-copy-list:hover {
    background: #334155;
    color: #fff;
    border-color: #334155;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .bank-list-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .bli-logo-area {
        border-right: none;
        margin-right: 0;
        margin-bottom: 15px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        height: auto;
    }
    .bli-logo {
        max-height: 50px; 
    }
    .bli-info-area {
        margin-bottom: 20px;
        width: 100%;
    }
    .bli-iban-area {
        width: 100%;
        padding-left: 0;
        text-align: left;
    }
}

/* Şirket Bilgileri Paneli (Banka Sayfası) */
.tax-identity-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
}
.tic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tic-item label {
    display: block; font-size: 11px; color: #94a3b8; font-weight: 700; text-transform: uppercase; margin-bottom: 5px;
}
.tic-item span {
    font-size: 14px; font-weight: 600; color: #334155;
}
@media (max-width: 768px) { .tic-grid { grid-template-columns: 1fr; } }

/* ------------------------------------- */
/* RESPONSIVE / MOBİL UYUMLULUK */
/* ------------------------------------- */

/* Sidebar ve İçerik Arası Boşluk (Mobil) */
@media (max-width: 991.98px) {
    .sticky-sidebar-wrapper {
        position: static;
        margin-bottom: 30px;
    }
    .corp-sidebar {
        box-shadow: none;
        border: 1px solid #eee;
    }
}

/* İletişim Kartları Mobil Boşluk */
@media (max-width: 991.98px) {
     .contact-float-cards { margin-top: -40px; }
}

/* Mobilde Sidebar ve İçerik Arası Boşluk */
@media (max-width: 991.98px) {
    .sticky-sidebar-wrapper {
        margin-top: 30px;
        position: static;
    }
    
    /* Mobilde içerik kutusu kenar boşluklarını azalt */
    .corp-content-box {
        padding: 20px;
    }
    
    /* Banka/İletişim kartlarında mobil boşluk ayarı */
    .contact-float-cards {
        margin-top: -30px;
    }
}

        .auth-section {
            padding: 25px 0;
            min-height: 60vh; 
            display: flex;
            align-items: center;
        }
        
        .split-box {
            border-radius: 20px;
            overflow: hidden;
            height: 100%; /* Eşit yükseklik için */
            min-height: 600px; /* Sabit minimum yükseklik */
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .split-box:hover {
            transform: translateY(-5px); /* Hafif hover efekti */
        }

        .login-box {
            background: #ffffff;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid #fff;
        }

        .auth-title {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .auth-desc {
            color: #64748b;
            font-size: 1rem;
            margin-bottom: 40px;
        }

        /* Form Inputları */
        .form-label-custom {
            font-size: 0.85rem;
            font-weight: 700;
            color: #334155;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        
        .custom-input {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 14px;
            border-radius: 10px;
            width: 100%;
            transition: 0.3s;
            color: #1e293b;
            font-weight: 500;
        }
        .custom-input:focus {
            background-color: #fff;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
            outline: none;
        }

        .btn-login-core {
            background: var(--primary);
            color: #fff;
            width: 100%;
            padding: 16px;
            border-radius: 10px;
            border: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s;
        }
        .btn-login-core:hover {
            background: var(--primary-dark);
            box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
            transform: translateY(-2px);
        }

        /* --- SAĞ KUTU: GÖRSEL  --- */
        .image-box {
            background: url('../images/login-bg.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 50px;
            text-align: center;
        }

        /* Mavi Filtre */
        .image-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
            z-index: 1;
        }

        .promo-overlay {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .promo-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            border-radius: 16px;
            color: #fff;
        }

        .promo-tag {
            background: #fff;
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .btn-register-link {
            display: inline-block;
            margin-top: 15px;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 2px;
            transition: 0.3s;
        }
        .btn-register-link:hover {
            color: var(--primary);
            border-bottom-color: #fff;
        }

        /* Mobil Uyum */
        @media (max-width: 991px) {
            .split-box {
                min-height: auto;
                height: auto;
            }
            .image-box {
                min-height: 400px;
                order: -1; /* Mobilde görsel üstte kalsın */
                margin-bottom: 20px;
            }
        }
        
         /* Kayıt formuna özel ufak ayarlar */
        .form-check-label {
            font-size: 0.85rem;
            color: #64748b;
        }
        .form-check-label a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        .form-check-label a:hover {
            text-decoration: underline;
        }
        
/* =========================================================== */
/* ZONE HOST - İÇERİK SAYFALARI (BLOG & KB) STİLLERİ           */
/* (style.css dosyasına eklendi)                               */
/* =========================================================== */

/* --- Ortak Header Banner --- */
.content-header-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.content-header-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.content-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: inline-block;
}

/* =========================================================== */
/* BLOG SAYFASI STİLLERİ                                       */
/* =========================================================== */

/* Filtre Butonları */
.blog-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

/* Blog Kartı */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-date .day { display: block; font-weight: 800; font-size: 1.2rem; color: #0f172a; line-height: 1; }
.blog-date .month { display: block; font-size: 0.7rem; font-weight: 700; color: #64748b; text-transform: uppercase; }

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-meta i { color: var(--primary); margin-right: 5px; }

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: #1e293b;
    text-decoration: none;
    transition: 0.2s;
}

.blog-title a:hover { color: var(--primary); }

.blog-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.blog-link:hover { gap: 10px; }

/* Pagination */
.content-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.p-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.p-btn:hover:not(.disabled) { background: var(--primary); color: #fff; border-color: var(--primary); }
.p-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 10px rgba(var(--primary-rgb),0.3); }
.p-btn.disabled { opacity: 0.5; cursor: default; }
.p-dots { color: #94a3b8; font-weight: 700; }

/* =========================================================== */
/* BİLGİ BANKASI (KB) STİLLERİ                                 */
/* =========================================================== */

/* Arama Kutusu */
.kb-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.kb-search-input {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    border: none;
    padding: 0 120px 0 50px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.kb-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 8px;
    padding: 0 25px;
    font-weight: 700;
}

/* KB Kategori Kartları */
.kb-category-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.kb-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-bg);
}

.kb-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-blue { background: var(--primary-bg); color: var(--primary); }
.icon-orange { background: #ffedd5; color: #ea580c; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-purple { background: #f3e8ff; color: #9333ea; }
.icon-red { background: #fee2e2; color: #dc2626; }
.icon-dark { background: #e2e8f0; color: #475569; }

.kb-info h4 { margin: 0; font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 5px; }
.kb-info span { font-size: 0.85rem; color: #64748b; }

.kb-arrow { margin-left: auto; color: #cbd5e1; transition: 0.3s; }
.kb-category-card:hover .kb-arrow { color: var(--primary); transform: translateX(5px); }

/* Makale Listesi */
.kb-article-box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    overflow: hidden;
}

.box-title {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    background: #fcfcfc;
}

.kb-article-box .list-group-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 25px;
    font-size: 0.95rem;
    color: #475569;
    transition: 0.2s;
}

.kb-article-box .list-group-item:hover {
    color: var(--primary);
    background: #f8fafc;
    padding-left: 30px;
}

.kb-article-box .list-group-item:hover i { color: var(--primary) !important; }

/* Destek Kartı */
.kb-support-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.support-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.kb-support-card h4 { font-weight: 700; margin-bottom: 10px; }
.kb-support-card p { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 25px; }

/* Responsive */
@media (max-width: 768px) {
    .content-header-banner { padding: 60px 0; }
    .kb-search-input { font-size: 0.9rem; padding-right: 90px; }
    .kb-search-btn { padding: 0 15px; }
}

/* ======= GLOBAL MOBİL GÜVENLİK ======= */
@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    table {
        word-break: break-word;
    }
    .reference .referenceselect select {
        width: 100%;
    }
}
@media (max-width: 430px) {
    .section-title {
        font-size: 20px;
    }
    .section-description {
        font-size: 14px;
    }
    .tld-card-modern {
        padding: 6px 3px;
    }
    .tld-name {
        font-size: 10px !important;
    }
    .tld-price {
        font-size: 9px !important;
    }
}

