/* ------------------------------------- */
/* 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, #4cbafd, #009eff); 
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #007bbd;
}

/* ------------------------------------- */
/* 2: HEADER ALANI */
/* ------------------------------------- */
.top-gradient-bar {
    height: 5px;
    background: linear-gradient(to right, #4cbafd, #009eff);
    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: #009eff;
    font-size: 1.1em;
}
.info-bar .left-menu a:hover {
    color: #009eff;
}
.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-dark:hover {
    box-shadow: 0 4px 15px rgba(21, 23, 32, 0.4);
}
.btn-gradient-blue {
    background-image: linear-gradient(to right, #4cbafd, #009eff);
}
.btn-gradient-blue:hover {
    box-shadow: 0 4px 15px rgba(0, 158, 255, 0.3);
}
.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 .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: #009eff;
    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 #009eff; 
}
.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: #009eff; 
    font-size: 1.1em;
}
.main-nav .dropdown-item:hover {
    background-color: #f8f9fa; 
    color: #009eff;
    transform: translateX(3px); 
}
.main-nav .dropdown-item:active {
    background-color: #e9ecef;
    color: #007ecc;
}
@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: 50%;
        right: auto;
        transform: translateX(-50%); 
        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 .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: #009eff;
}
.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.5rem;
    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: 0rem; 
}
.mega-menu-block:hover {
    background-color: #e6f5ff; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,158,255,0.1);
}
.mega-menu-block .icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #009eff;
}
.mega-menu-block .text-box {
    line-height: 1.4;
}
.mega-menu-block .text-box strong {
    font-size: 16px;
    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(0,158,255,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;
}
.mega-menu-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}
.mega-menu-links li a:hover {
    background-color: #e6f5ff; 
    color: #009eff;
    transform: translateX(3px);
}
.mega-menu-links li a i {
    font-size: 1.1em;
}
.main-nav .dropdown-menu[aria-labelledby="corporateDropdown"] .mega-menu-links li a,
.main-nav .dropdown-menu[aria-labelledby="domainDropdown"] .mega-menu-links li a {
    font-size: 14px; 
    padding: 8px 15px; 
}
.main-nav .dropdown-menu[aria-labelledby="corporateDropdown"] .mega-menu-links li a i,
.main-nav .dropdown-menu[aria-labelledby="domainDropdown"] .mega-menu-links li a i {
    font-size: 1em; 
}
.main-nav .dropdown-menu[aria-labelledby="corporateDropdown"] .mega-menu-links li a i {
     color: #4CAF50; 
}
.main-nav .dropdown-menu[aria-labelledby="domainDropdown"] .mega-menu-links li a i {
     color: #009eff; 
}
.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-image: linear-gradient(to right, #4cbafd, #009eff);
    position: relative; 
    box-sizing: border-box; 
}
.main-nav .btn.nav-cart-btn-new:hover {
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 158, 255, 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: 45px;
    height: 45px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mobile-cart-btn:hover {
    background-color: #e9ecef;
    color: #009eff;
}
.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #009eff; 
    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: 45px;
    height: 45px;
    background-color: #f8f9fa; 
    border-radius: 8px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    padding-left: 13px; 
    gap: 4px; 
    transition: all 0.3s ease;
}
.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: #009eff; 
} 
.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: #009eff; 
}
.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: #009eff;
}
.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: #009eff;
}
.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: #009eff;
}
.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(90deg);
    color: #009eff;
}
.mobile-sub-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    background-color: #f8f9fb;
    border-top: 1px solid #f0f0f0;
}
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}
.mobile-sub-menu li a .sub-icon {
    display: inline-flex;
    width: 40px; 
    justify-content: center;
    margin-right: 15px; 
    color: #7e8299;
    font-size: 18px; 
}
.mobile-sub-menu li a:hover {
    color: #009eff;
    background-color: #f1f5f9; 
}
.mobile-sub-menu li a:hover .sub-icon {
    color: #009eff;
}

/* ------------------------------------- */
/* 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, #4cbafd, #009eff);
    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: #009eff;
    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, #009eff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #009eff, #3b82f6);
    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(0, 158, 255, 0.15);
    transform: translateY(-3px);
    border-color: #3b82f6;
    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, #009eff 0%, #0077ff 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(0, 158, 255, 0.3);
}
.btn-modern-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 158, 255, 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: #3b82f6;
}
.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: #60a5fa;
    font-weight: 700;
    background: rgba(59, 130, 246, 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: #3b82f6;
}
.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 #009eff;
    box-shadow: 0 20px 40px rgba(0, 158, 255, 0.12);
}
.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #009eff 0%, #0062cc 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-bottom-left-radius: 16px;
    box-shadow: -2px 2px 10px rgba(0,158,255,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: #009eff;
    font-size: 18px; 
    background-color: rgba(0, 158, 255, 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: all 0.3s ease;
    margin-top: 10px;
    background: transparent;
}
.btn-clean-outline:hover {
    border-color: #009eff;
    color: #009eff;
    background-color: #f0f9ff;
    transform: translateY(-2px);
}
.btn-clean-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #009eff 0%, #0062cc 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 158, 255, 0.3);
    margin-top: 10px; 
}
.btn-clean-primary:hover {
    background: linear-gradient(135deg, #008be0 0%, #0056b3 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 158, 255, 0.4);
}
.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));
}

/* --- 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: #dbeafe;
    box-shadow: 0 15px 40px rgba(0, 158, 255, 0.08);
}

.feature-icon-gradient {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f0f9ff; /* Çok açık mavi */
    color: #009eff; 
    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 #e0f2fe;
}

.modern-feature-card:hover .feature-icon-gradient {
    background: #009eff;
    color: #ffffff;
    border-color: #009eff;
    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: #009eff;
}
.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, #009eff 0%, #0062cc 100%);
    box-shadow: 0 4px 15px rgba(0, 158, 255, 0.2);
}
.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 158, 255, 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: #009eff;
}
.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: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}
.social-btn:hover {
    background-color: #009eff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 158, 255, 0.3);
}
.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: #009eff;
    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;
}
.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
    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: #009eff;
}
.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; 
    }
    #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: column;
        text-align: center;
        line-height: 1.4;
    }
    .announcement-bar .coupon-code {
        margin-left: 0;
        margin-top: 5px;
        font-size: 1em;
    }
    .clean-packages-section {
        padding-top: 100px;
        padding-bottom: 120px;
        background-color: #f3f4f8; 
        position: relative;
    }
    .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: 60px 0;
    }
    .domain-hero-title {
        font-size: 2rem;
    }
    .modern-search-wrapper {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
        gap: 10px;
    }
    .modern-search-input {
        text-align: center;
        padding: 5px;
    }
    .btn-modern-search {
        width: 100%;
    }
    .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) {
    #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;
    }
}

/* ====================================================== */
/* EK: İLETİŞİM VE BANKA SAYFALARI (style.css'e Ekle)     */
/* ====================================================== */

/* --- 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: #f0f9ff; 
    color: #009eff; 
    transform: translateX(5px); 
}

/* Aktif Sayfa (TAM MAVİ BLOK) */
.corp-sidebar-link.active {
    background: linear-gradient(135deg, #009eff 0%, #0077ff 100%) !important; 
    color: #ffffff !important; 
    box-shadow: 0 4px 15px rgba(0, 158, 255, 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;
}
.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: #009eff;
    color: #fff;
    border-color: #009eff;
    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: #f0f9ff;
    color: #009eff;
    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: #009eff;
    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: #009eff;
    box-shadow: 0 0 0 4px rgba(0, 158, 255, 0.1);
}

.btn-send-hover {
    transition: all 0.3s ease;
}

.btn-send-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 158, 255, 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: #009eff;
}
.c-float-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    color: #009eff;
    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: #009eff;
    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: #009eff;
    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: #009eff;
}
.stat-icon {
    font-size: 2rem;
    color: #009eff;
    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: #009eff;
}
.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: #009eff;
    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 #009eff; 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: #e0f2fe; color: #009eff; 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: #38bdf8; 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: #009eff; box-shadow: 0 15px 40px rgba(0,0,0,0.06); transform: translateY(-5px); }
.infra-icon { width: 60px; height: 60px; background: #f0f9ff; color: #009eff; 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: #009eff; 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: #009eff; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 3px rgba(0, 158, 255, 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: #009eff; 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, #f0f9ff 0%, #e0f2fe 100%); border-left: 5px solid #009eff; 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: #009eff;
            box-shadow: 0 0 0 4px rgba(0, 158, 255, 0.1);
            outline: none;
        }

        .btn-login-core {
            background: #009eff;
            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: #007acc;
            box-shadow: 0 10px 20px rgba(0, 158, 255, 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: #009eff;
            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 #009eff;
            padding-bottom: 2px;
            transition: 0.3s;
        }
        .btn-register-link:hover {
            color: #009eff;
            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: #009eff;
            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: #38bdf8;
    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: #009eff;
    color: #fff;
    border-color: #009eff;
    box-shadow: 0 4px 10px rgba(0, 158, 255, 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: #009eff; 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: #009eff; }

.blog-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: #009eff;
    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: #009eff; color: #fff; border-color: #009eff; }
.p-btn.active { background: #009eff; color: #fff; border-color: #009eff; box-shadow: 0 4px 10px rgba(0,158,255,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: #dbeafe;
}

.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: #e0f2fe; color: #009eff; }
.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: #009eff; 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: #009eff;
    background: #f8fafc;
    padding-left: 30px;
}

.kb-article-box .list-group-item:hover i { color: #009eff !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; }
}

