 body {
            font-family: 'Inter', sans-serif;
            color: #333333;
            background-color: #f8fafc;
            overflow-x: hidden;
        }
        
        /* Renk Paleti */
        :root {
            --primary-blue: #0056b3;
            --accent-blue: #007bff;
            --brand-blue: #0052cc;
            --light-blue-bg: #f4f7fa;
            --dark-navy: #0f172a;
            --gray-text: #64748b;
        }

        /* Üst Bar (Top Bar) */
        .top-bar {
            background-color: var(--dark-navy);
            color: #cbd5e1;
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .top-bar-slogan {
            font-weight: 500;
        }
        .top-bar-slogan i {
            color: #f59e0b;
        }
        .top-bar-links a {
            color: #cbd5e1;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.2s;
        }
        .top-bar-links a:hover {
            color: #ffffff;
        }
        .top-bar-separator {
            color: #475569;
            margin-left: 15px;
        }

        /* Navigasyon / Header */
        .navbar {
            padding: 18px 0;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 26px;
            color: #0b2545;
            letter-spacing: -0.5px;
        }
        .navbar-brand span {
            color: var(--accent-blue);
        }
        
        /* Menü Elemanları ve Bölücü Çizgiler */
        .navbar-nav {
            align-items: center;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            font-weight: 600;
            color: #1e293b !important;
            font-size: 14px;
            padding: 8px 10px !important;
            transition: all 0.3s;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-blue) !important;
        }
        /* Aktif ve Hover Alt Çizgi Efekti */
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 16px;
            background-color: var(--accent-blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: calc(100% - 32px);
        }
        /* Dikey Çizgi Ayarı */
        .nav-item-divider {
            width: 1px;
            height: 18px;
            background-color: #e2e8f0;
            margin: 0 5px;
        }

        /* Menüyü ve Butonları Sağa Yaslama Ayarları (GÜNCELLENDİ) */
        @media (min-width: 992px) {
            .navbar-collapse {
                display: flex !important;
                justify-content: flex-end !important;
                flex-grow: 1;
            }
            .navbar-nav {
                margin-left: auto !important;
                /* margin-right: 2rem !important; satırını tam sağa yaslanması için kaldırdık */
            }
        }

        /* Dropdown Geliştirmeleri */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            margin-top: 10px;
        }
        .dropdown-item {
            font-size: 13.5px;
            font-weight: 500;
            padding: 8px 20px;
            color: #334155;
            transition: all 0.2s;
        }
        .dropdown-item:hover {
            background-color: #f1f5f9;
            color: var(--accent-blue);
        }

        /* Destek Hattı ve Buton */
        .support-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #f1f5f9;
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        .support-icon {
            font-size: 18px;
            color: var(--accent-blue);
        }
        .support-text-label {
            font-size: 10px;
            color: var(--gray-text);
            text-transform: uppercase;
            font-weight: 700;
            display: block;
            margin-bottom: -2px;
        }
        .btn-demo {
            background-color: var(--accent-blue);
            color: #fff;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 14px;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .btn-demo:hover {
            background-color: var(--primary-blue);
            color: #fff;
        }

        /* Hero Alanı */
        .hero-section{
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at left center, rgba(45,108,255,.10) 0%, transparent 35%),
        radial-gradient(circle at right top, rgba(45,108,255,.08) 0%, transparent 40%),
        linear-gradient(135deg,#ffffff 0%,#f8fbff 55%,#f3f7ff 100%);
}

/* Sağ üstteki geometrik desen */
.hero-section::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-120px;
    width:700px;
    height:700px;
    background:url("images/hero-pattern.svg") no-repeat center;
    background-size:contain;
    opacity:.18;
    pointer-events:none;
}
/* Sol taraftaki hafif mavi parıltı */
.hero-section::after{
    content:"";
    position:absolute;
    left:-180px;
    top:120px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(52,110,255,.18) 0%, transparent 70%);
    filter:blur(40px);
    pointer-events:none;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:760px;      /* Eskiye göre daha büyük */
    transform:scale(1.08);
    filter:drop-shadow(0 35px 60px rgba(0,0,0,.18));
    transition:.4s;
}

.hero-image img:hover{
    transform:scale(1.11);
}

.hero-section{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(135deg,#ffffff 0%,#f7faff 60%,#f2f6ff 100%);
}

.hero-section::before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:600px;
    height:600px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(42,108,255,.04) 0px,
            rgba(42,108,255,.04) 2px,
            transparent 2px,
            transparent 65px
        );
    transform:rotate(18deg);
    opacity:.6;
}

.hero-title{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
}

.hero-title span{
    color:#2d6cff;
}

.hero-desc{
    font-size:20px;
    color:#5f6d87;
    line-height:1.8;
}

.badge-custom{
    background:#eef4ff;
    color:#2d6cff;
    border-radius:30px;
    padding:10px 18px;
    font-weight:600;
}

.feature-check{
    margin-bottom:14px;
    font-weight:500;
}

.feature-check i{
    color:#2d6cff;
    margin-right:8px;
}
        .badge-custom {
            background-color: #e2e8f0;
            color: #475569;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 1px;
            padding: 6px 16px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .hero-title {
            font-weight: 800;
            font-size: 42px;
            line-height: 1.2;
            color: #0f172a;
        }
        .hero-title span {
            color: var(--accent-blue);
        }
        .hero-desc {
            color: var(--gray-text);
            font-size: 15px;
            margin-top: 15px;
            margin-bottom: 30px;
        }
        .feature-check {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #1e293b;
        }
        .feature-check i {
            color: var(--accent-blue);
            margin-right: 8px;
        }
        .social-proof {
            margin-top: 35px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .avatar-group {
            display: flex;
        }
        .avatar-group img {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }
        .avatar-group img:first-child {
            margin-left: 0;
        }

        /* Görseldeki Özellikler Şeridi (Slider Altındaki Alan) */
        .feature-bar-section {
            background-color: #ffffff;
            padding-bottom: 15px;
        }
        .feature-bar-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
            padding: 30px 10px;
        }
        .feature-col {
            position: relative;
            padding: 15px 25px;
        }
        /* Sütunlar arası dikey çizgi (Sadece masaüstü ekranlarda) */
        @media (min-width: 992px) {
            .feature-col:not(:last-child)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 20%;
                height: 60%;
                width: 1px;
                background-color: #e2e8f0;
            }
        }
        /* Yuvarlak ikon alanı */
        .icon-circle {
            width: 54px;
            height: 54px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
            flex-shrink: 0;
        }
        .icon-circle i {
            font-size: 20px;
            color: var(--brand-blue);
        }
        .feature-text-block {
            display: flex;
            flex-direction: column;
        }
        .feature-item-title {
            font-size: 14px;
            font-weight: 700;
            color: #0b2545;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .feature-item-desc {
            font-size: 12px;
            color: var(--gray-text);
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* Ürünler & Çözümler */
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-subtitle {
            color: var(--accent-blue);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-title {
            font-weight: 800;
            font-size: 32px;
            color: #0f172a;
        }
        .product-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            background: #fff;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .product-card-body {
            padding: 25px;
        }
        .product-card-title {
            font-weight: 700;
            font-size: 18px;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .product-card-text {
            font-size: 13px;
            color: var(--gray-text);
            line-height: 1.5;
        }
        .product-card-link {
            color: var(--accent-blue);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .product-img-wrapper {
            background: #f8fafc;
            text-align: center;
            padding: 20px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-img-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        /* Entegrasyonlar Bölümü (Koyu Panel) */
        .integration-section {
            background: var(--dark-navy);
            color: #fff;
            border-radius: 24px;
            padding: 60px;
            margin-top: 80px;
            margin-bottom: 80px;
        }
        .integration-btn {
            background: var(--accent-blue);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            transition: 0.3s;
        }
        .integration-btn:hover {
            background: #0056b3;
            color: white;
        }
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        .logo-box {
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }
        .int-list-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            transition: 0.3s;
        }
        .int-list-item:hover {
            background: rgba(255,255,255,0.1);
        }
        .int-list-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
        }

        /* Sayıcılar */
        .stats-strip {
            padding: 40px 0;
            background: #fff;
            border-bottom: 1px solid #f1f5f9;
        }
        .stat-box {
            text-align: center;
        }
        .stat-icon {
            font-size: 24px;
            color: var(--accent-blue);
            margin-bottom: 10px;
        }
        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
        }
        .stat-label {
            font-size: 12px;
            color: var(--gray-text);
            font-weight: 500;
        }

        /* Sektör Çözümleri */
        .sector-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            height: 160px;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .sector-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: transform 0.5s;
        }
        .sector-card:hover .sector-img {
            transform: scale(1.05);
        }
        .sector-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sector-icon {
            width: 36px;
            height: 36px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        .sector-title {
            font-weight: 700;
            font-size: 16px;
            margin: 0;
        }

        /* CTA Bölümü */
        .cta-section {
            background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
            border-radius: 24px;
            padding: 60px;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            margin-bottom: 80px;
        }
        .cta-btn-white {
            background: #fff;
            color: var(--primary-blue);
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }
        .cta-btn-white:hover {
            background: #f1f5f9;
            color: var(--primary-blue);
        }
        .cta-btn-outline {
            border: 2px solid rgba(255,255,255,0.5);
            color: #fff;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }
        .cta-btn-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .cta-badge-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cta-badge-list li {
            background: rgba(255,255,255,0.15);
            padding: 10px 18px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* İş Ortakları */
        .partners-section {
            padding: 40px 0;
            background: #f8fafc;
        }
        .partner-logo {
            max-height: 40px;
            opacity: 0.6;
            transition: opacity 0.3s;
            filter: grayscale(100%);
        }
        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* Footer */
        footer {
            background: var(--dark-navy);
            color: #94a3b8;
            padding: 80px 0 30px;
            font-size: 14px;
        }
        .footer-logo {
            color: #fff;
            font-weight: 800;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--accent-blue);
        }
        .footer-title {
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 16px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        .btn-whatsapp:hover {
            background: #20ba5a;
            color: #fff;
        }

        /* Mobil Uyumlu Navigasyon Bölücü Gizleme */
        @media (max-width: 991.98px) {
            .nav-item-divider {
                display: none;
            }
            .navbar-nav {
                align-items: flex-start;
                padding: 15px 0;
            }
            .nav-link {
                padding: 10px 0 !important;
                width: 100%;
            }
            .nav-link::after {
                left: 0;
            }
            .nav-link:hover::after, .nav-link.active::after {
                width: 100%;
            }
            .support-wrapper {
                margin: 15px 0;
                width: 100%;
                justify-content: center;
            }
            .btn-demo {
                width: 100%;
                text-align: center;
            }
        }
		
		/* Çözümlerimiz & Ürünler Section */
.solutions-products-section {
    background-color: #ffffff;
    padding: 40px 0;
}

/* Çözümlerimiz Rozeti */
.badge-solutions {
    background-color: #eef2ff;
    color: #0052cc;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    display: inline-block;
}

/* Ana Başlık */
.solutions-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

/* Tüm Ürünleri İncele Butonu */
.all-products-btn-wrapper {
    position: absolute;
    right: 0;
    bottom: 5px;
}
.btn-all-products {
    background-color: #ffffff;
    color: #0052cc;
    font-weight: 600;
    font-size: 13.5px;
    border: 1px solid #e2e8f0;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.btn-all-products:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0052cc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Kart Yapısı */
.solution-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.solution-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Kart İçeriği */
.card-top-content {
    margin-bottom: 20px;
}
.card-item-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}
.card-item-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}
.card-item-link {
    color: #0052cc;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}
.card-item-link:hover {
    color: #003d99;
}

/* Kart Görsel Alanı (Görseldeki gibi alt kısma hizalama) */
.card-image-box {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.solution-item-card:hover .card-image-box img {
    transform: scale(1.06);
}

/* Son Karttaki Vektörel Yapboz Entegrasyon İkonu Tasarımı */
.puzzle-container {
    align-items: center;
}
.puzzle-icon-wrap {
    width: 60px;
    height: 60px;
    background-color: #0052cc;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.15);
    transition: transform 0.3s ease;
}
.solution-item-card:hover .puzzle-icon-wrap {
    transform: scale(1.08) rotate(5deg);
}

/* Mobil Cihazlar İçin Küçük İyileştirme */
@media (max-width: 991px) {
    .solution-item-card {
        min-height: 320px;
    }
}

/* Güçlü Entegrasyonlar Section */
.powerful-integrations-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

/* Ana Koyu Panel Kartı */
.integration-main-card {
    background: linear-gradient(135deg, #020b18 0%, #08192f 100%);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(2, 11, 24, 0.15);
}

/* Sol Sütun Metin Alanları */
.integration-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}
.integration-desc {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Tüm Entegrasyonları Gör Butonu */
.btn-all-integrations {
    background-color: #0052cc;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    border: none;
}
.btn-all-integrations:hover {
    background-color: #0043a8;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.25);
}

/* Partner Logoları Izgarası (Grid) */
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.logo-white-card {
    background-color: #ffffff;
    border-radius: 10px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}
.logo-white-card:hover {
    transform: scale(1.03);
}

/* Temsili Partner Logo Yazı Tasarımları (PNG yerine CSS formatı) */
.partner-logo-text {
    font-size: 14px;
    font-weight: 800;
}
.logo-red { color: #e11d48; font-style: italic; }
.parasut-teal { color: #0d9488; font-size: 12px; }
.netsis-blue { color: #0284c7; font-size: 11px; letter-spacing: 0.5px; }
.ideasoft-green { color: #16a34a; font-size: 13px; }
.ideasoft-green span { color: #0f172a; }
.hepsiburada-orange { color: #ea580c; font-size: 10px; }
.trendyol-orange { color: #f97316; font-size: 12px; }

/* Orta Kısım Cihaz Kolajı Görsel Alanı */
.devices-mockup-wrapper {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.devices-main-image {
    max-height: 380px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    object-fit: cover;
    transition: transform 0.4s ease;
}
.devices-mockup-wrapper:hover .devices-main-image {
    transform: scale(1.02);
}

/* Arkadaki Teknolojik Mavi Parlama Efekti */
.ambient-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.45) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Sağ Sütun: Dikey Yarı Şeffaf Glassmorphism Kartları */
.integration-right-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.glass-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}
.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

/* Şeffaf Kart İkon Haznesi */
.glass-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 18px;
}
.glass-feature-card:hover .glass-card-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Şeffaf Kart Metin Alanları */
.glass-card-text {
    display: flex;
    flex-direction: column;
}
.glass-card-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.glass-card-subtitle {
    color: #94a3b8;
    font-size: 11px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobil Ekran İyileştirmeleri */
@media (max-width: 991.98px) {
    .integration-main-card {
        padding: 40px 24px;
    }
    .integration-title {
        font-size: 26px;
    }
    .partner-logos-grid {
        margin-bottom: 20px;
    }
}

/* ==========================================
   BÖLÜM 1: İSTATİSTİK ŞERİDİ CSS
   ========================================== */
.stats-bar-section {
    background-color: #ffffff;
    padding: 30px 0;
}

/* Tüm Elemanları Tutan Beyaz Kart */
.stats-bar-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    padding: 24px 10px;
}

/* Sütun Düzeni */
.stat-col {
    position: relative;
    padding: 12px 10px;
}

/* Dikey Bölücü Çizgiler (Masaüstünde görünür) */
@media (min-width: 768px) {
    .stat-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background-color: #e2e8f0;
    }
}

/* İkon Alanı */
.stat-icon-wrap {
    font-size: 32px;
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Metin Blokları */
.stat-text-block {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #0052cc;
    line-height: 1.2;
}
.stat-label {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
    margin-top: 1px;
}


/* ==========================================
   BÖLÜM 2: SEKTÖRÜNÜZE ÖZEL ÇÖZÜMLER CSS
   ========================================== */
.sectors-section {
    background-color: #ffffff;
    padding: 20px 0 40px;
}

/* Bölüm Başlığı */
.sectors-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Tüm Sektörler Butonu */
.all-sectors-btn-wrapper {
    position: absolute;
    right: 0;
    bottom: -5px;
}
.btn-all-sectors {
    background-color: #f1f5f9;
    color: #0052cc;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.btn-all-sectors:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    color: #0043a8;
}

/* Sektör Kart Yapısı */
.sector-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible; /* İkonun dışarı taşmasına izin vermek için */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.sector-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Kartın Üstündeki Görsel Alanı */
.sector-img-wrapper {
    height: 125px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    position: relative;
}
.sector-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sector-item-card:hover .sector-img-wrapper img {
    transform: scale(1.04);
}

/* Sektör Görselinin Üzerine Binen Mavi Yuvarlak İkon */
.sector-badge-icon {
    position: absolute;
    left: 16px;
    top: 107px; /* 125px yükseklikteki görselin tam sınır çizgisine oturması için */
    width: 36px;
    height: 36px;
    background-color: #0052cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
    z-index: 3;
}

/* Kartın Alt Metin Alanı */
.sector-card-body {
    padding: 32px 15px 22px; /* İkonun kapladığı üst alana göre dengelenmiş boşluk */
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.45;
}

/* ==========================================
   BÖLÜM 1: CTA PANEL (KEŞFETMEYE HAZIR MISINIZ?)
   ========================================== */
.discover-cta-section {
    background-color: #ffffff;
    padding: 60px 0;
}

/* Ana Mavi Kart */
.discover-cta-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: visible; /* Temsilci görselinin taşması için */
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.cta-main-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}
.cta-main-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    margin-bottom: 30px;
}

/* Butonlar */
.btn-cta-white {
    background-color: #ffffff;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 13.5px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}
.btn-cta-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}
.btn-cta-outline {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 13.5px;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    transition: all 0.25s ease;
}
.btn-cta-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Uzman Ekip Altyapısı */
.cta-support-team {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.avatar-stack {
    display: flex;
}
.avatar-stack img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    margin-left: -8px;
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.cta-team-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    font-weight: 500;
}

/* Müşteri Temsilcisi Görsel Haznesi */
.cta-agent-image-wrap {
    position: absolute;
    bottom: -50px; /* Görseldeki gibi kartın altından taşma efekti */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 330px;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    z-index: 3;
}
.cta-agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sağ Taraf Beyaz Bilgi Kartları */
.cta-badge-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 18px;
    width: 100%;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}
.cta-badge-card:hover {
    transform: translateX(-4px);
}
.cta-badge-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(37, 99, 235, 0.06);
    color: #1d4ed8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.cta-badge-title {
    color: #1d4ed8;
    font-weight: 700;
    font-size: 13px;
}


/* ==========================================
   BÖLÜM 2: GÜVENDİKLERİ TEKNOLOJİ ORTAĞIYIZ
   ========================================== */
.partners-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #f1f5f9;
}
.partners-main-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.partner-logo-gray {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
}


/* ==========================================
   BÖLÜM 3: KOYU MODERN FOOTER
   ========================================== */
.main-dark-footer {
    background-color: #09101d;
    color: #94a3b8;
    padding: 70px 0 25px;
    font-size: 14px;
}

/* Footer Logosu */
.footer-brand-logo {
    font-weight: 800;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 18px;
}
.footer-brand-logo span {
    color: #2563eb;
}
.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Sosyal Medya İkonları */
.footer-social-icons {
    display: flex;
    gap: 10px;
}
.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-social-icons a:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Başlıklar */
.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 22px;
}

/* Link Listesi */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-list li {
    margin-bottom: 12px;
}
.footer-link-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-link-list a:hover {
    color: #ffffff;
}

/* İletişim Listesi */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.4;
}
.footer-contact-list i {
    color: #2563eb;
    margin-top: 3px;
    font-size: 15px;
}

/* WhatsApp Butonu */
.btn-whatsapp-support {
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    width: 100%;
    justify-content: center;
}
.btn-whatsapp-support:hover {
    background-color: #1ebd56;
    color: #ffffff;
}

/* Çizgi ve Telif */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 25px;
}
.copyright-text {
    font-size: 12px;
    color: #475569;
    margin: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .discover-cta-card {
        padding: 40px 24px;
    }
    .discover-cta-card .cta-right-badges {
        align-items: center !important;
    }
}

/* ==========================================
   YENİ EKLENEN: ÖNE ÇIKAN ÖZELLİKLER CSS
   ========================================== */
.main-features-section {
    background-color: #f8fafc;
    padding: 40px 0;
}
.features-badge {
    background-color: #eef2ff;
    color: #0052cc;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    display: inline-block;
}
.features-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}
.feature-box-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.feature-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}
.feature-box-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 82, 204, 0.06);
    color: #0052cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.feature-box-card:hover .feature-box-icon {
    background-color: #0052cc;
    color: #ffffff;
}
.feature-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.feature-box-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
}
.btn-all-features {
    background-color: #ffffff;
    color: #0052cc;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #e2e8f0;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.btn-all-features:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #0043a8;
}


/* Mavi kartın üstten taşan resmi gizlememesi için kırpmayı açıyoruz */
.discover-cta-card {
    position: relative;
    overflow: visible !important;
}

/* Resmin içinde bulunduğu Bootstrap sütununu kart ile aynı yüksekliğe zorluyoruz */
.cta-agent-column {
    position: inherit;
    min-height: 250px; /* Kartın yaklaşık iç yüksekliği kadar bir alan açıyoruz */
}

/* Resmi tabana sabitleyen kapsayıcı */
.cta-agent-image-wrap {
    position: absolute;
    bottom: 0;          /* Tam olarak mavi zeminin altına yapıştırır */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Resmi iki katına çıkaran ve yukarı taşmasını sağlayan stil */
.cta-agent-img {
    height: 350px;      /* Resmi net bir piksel değeriyle büyüterek yukarı taşırıyoruz */
    width: auto;        /* Orantıyı korur */
    object-fit: contain;
    display: block;
    margin-bottom: -15px; /* Eğer kartın altındaki gölge veya border-radius payı varsa tam sıfırlamak için hafifçe aşağı çekebiliriz, duruma göre 0 yapabilirsiniz */
    z-index: 10;
}
/* --- Üzerine Gelince (Hover) Açılma ve Ok Animasyonları --- */
        
        /* Bootstrap'in varsayılan sivri okunu gizliyoruz */
        .dropdown-toggle::after {
            display: none !important;
        }
        
        /* Eklediğimiz FontAwesome okunun ayarları */
        .dropdown-toggle i.fa-chevron-down {
            font-size: 10px;
            margin-left: 5px;
            transition: transform 0.3s ease;
            vertical-align: middle;
        }

        /* Sadece Masaüstü Ekranlarda Hover İşlemi */
        @media (min-width: 992px) {
            /* Menü gizliyken varsayılan durumu */
            .navbar .dropdown-menu {
                display: block;
                visibility: hidden;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.2s ease-in-out;
                margin-top: 0;
            }
            
            /* Üzerine gelindiğinde menünün görünür olması */
            .navbar .dropdown:hover .dropdown-menu {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }

            /* Üzerine gelindiğinde okun yukarı dönmesi */
            .navbar .dropdown:hover .dropdown-toggle i.fa-chevron-down {
                transform: rotate(180deg);
            }
        }
		
		
		/* ==========================================
   İÇ SAYFALAR: SAYFA BAŞLIĞI VE BREADCRUMB
   ========================================== */
.inner-page-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #001f3f 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.inner-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.breadcrumb {
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.breadcrumb-item {
    font-size: 13.5px;
    font-weight: 500;
}
.breadcrumb-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-item a:hover {
    color: #ffffff;
}
.breadcrumb-item.active {
    color: #ffffff;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* FontAwesome sağ ok */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}

/* ==========================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   ========================================== */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.about-content-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.about-content-title span {
    color: var(--accent-blue);
}
.about-text {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--accent-blue);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    border: 4px solid #fff;
}
.about-experience-badge .years {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.about-experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Misyon / Vizyon Kartları */
.mv-section {
    background-color: #f8fafc;
    padding: 60px 0;
}
.mv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}
.mv-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.mv-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.mv-text {
    color: var(--gray-text);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================== */
.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* İletişim Bilgi Kartları */
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.08);
    border-color: #cbd5e1;
}
.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #eef2ff;
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-icon-wrapper {
    background-color: var(--accent-blue);
    color: #ffffff;
}
.contact-info-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.contact-info-text {
    font-size: 14.5px;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.6;
}
.contact-info-text a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-text a:hover {
    color: var(--accent-blue);
}

/* İletişim Formu Kartı */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.contact-form-desc {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Bootstrap Floating Input Özelleştirmeleri */
.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    color: #0f172a;
    font-weight: 500;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
    background-color: #ffffff;
}
.form-floating label {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Harita Kapsayıcısı */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}
.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   ENTEGRASYONLAR SAYFASI ÖZEL STİLLERİ
   ========================================== */
.integrations-page {
    background-color: #f8fafc;
    padding: 60px 0 100px;
}

/* SEO Odaklı Üst Bilgi Alanı */
.seo-intro-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
}
.seo-intro-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.seo-intro-text {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.seo-intro-text strong {
    color: #334155;
}

/* Sol Kategori Menüsü (Sticky) */
.integration-sidebar {
    position: sticky;
    top: 100px; /* Header'ın altında kalması için */
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}
.integration-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 24px;
    margin-bottom: 15px;
}
.integration-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.integration-nav li a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.integration-nav li a:hover,
.integration-nav li a.active {
    background-color: #f1f5f9;
    color: var(--accent-blue);
    border-left-color: var(--accent-blue);
}
.integration-nav li a i {
    width: 24px;
    font-size: 16px;
}

/* Kategori Başlıkları */
.category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px; /* Anchor linkler için yukarıdan boşluk */
}
.category-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.category-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.category-subtitle {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Entegrasyon Kartları */
.int-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
}
.int-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.08);
    border-color: #cbd5e1;
}

/* Logo Alanı Özelleştirmesi */
.int-logo-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.int-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.int-card:hover .int-logo-box img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo yerine geçici metin tasarımı (Görseller eklenene kadar şık durması için) */
.temp-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #334155;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}
.int-card:hover .temp-logo-text {
    color: var(--accent-blue);
}

.int-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.int-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.int-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.int-card:hover .int-tag {
    background: #eef2ff;
    color: var(--brand-blue);
}

/* ==========================================
   FİYATLAR SAYFASI ÖZEL STİLLERİ
   ========================================== */
.pricing-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* Aylık / Yıllık Geçiş Butonu (Toggle) */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}
.toggle-text {
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}
.toggle-text.active {
    color: #0f172a;
}
.discount-badge {
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-left: 8px;
    vertical-align: middle;
}
.pricing-toggle-wrapper .form-switch .form-check-input {
    width: 3.5rem;
    height: 1.75rem;
    cursor: pointer;
    background-color: #cbd5e1;
    border-color: #cbd5e1;
}
.pricing-toggle-wrapper .form-switch .form-check-input:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}
.pricing-toggle-wrapper .form-switch .form-check-input:focus {
    box-shadow: none;
}

/* Fiyat Kartları */
.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* Öne Çıkan Paket Tasarımı */
.pricing-card.popular {
    border: 2px solid var(--accent-blue);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
    transform: scale(1.03);
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 82, 204, 0.15);
}
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Kart İçerikleri */
.plan-icon {
    width: 54px;
    height: 54px;
    background: #eef2ff;
    color: var(--brand-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.pricing-card.popular .plan-icon {
    background: var(--accent-blue);
    color: #ffffff;
}
.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.plan-desc {
    color: var(--gray-text);
    font-size: 13.5px;
    margin-bottom: 25px;
    line-height: 1.5;
}
.plan-price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}
.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    transition: all 0.3s ease;
}
.price-period {
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 500;
}

/* Özellik Listesi */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}
.plan-features li i.fa-check {
    color: #10b981;
    font-size: 16px;
    margin-top: 3px;
}
.plan-features li i.fa-xmark {
    color: #cbd5e1;
    font-size: 16px;
    margin-top: 3px;
}
.plan-features li.disabled {
    color: #94a3b8;
}

/* Sıkça Sorulan Sorular (FAQ) */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}
.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px 24px;
    background-color: #ffffff;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-blue);
    background-color: #f8fafc;
}
.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--gray-text);
    font-size: 14.5px;
    line-height: 1.6;
    background-color: #f8fafc;
}

/* Mobil İçin Ufak Düzeltmeler */
@media (max-width: 991.98px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* ==========================================
   SEKTÖR: MARKET & ŞARKÜTERİ ÖZEL STİLLERİ
   ========================================== */
.sector-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #fff;
    border-bottom: 5px solid var(--accent-blue);
}
.sector-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.sector-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Sektör Özellikleri (İkonlu Grid) */
.sector-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
}
.sector-feature-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}
.sector-feature-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.sector-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.sector-feature-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Donanım Seçenekleri Kartları */
.hardware-choice-section {
    background-color: #f8fafc;
    padding: 80px 0;
}
.hardware-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hardware-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.hardware-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hardware-card:hover .hardware-img-box img {
    transform: scale(1.05);
}
.hardware-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.hardware-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.hardware-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.hardware-text {
    color: var(--gray-text);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.hardware-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.hardware-list li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.hardware-list li i {
    color: #10b981;
}

/* SEO Makale Alanı */
.seo-article-section {
    padding: 80px 0;
    background: #fff;
}
.seo-article-content {
    max-width: 850px;
    margin: 0 auto;
}
.seo-article-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}
.seo-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 30px 0 15px;
}
.seo-article-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}
.seo-article-content ul {
    margin-bottom: 25px;
}
.seo-article-content li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}
.seo-article-content strong {
    color: #0f172a;
    font-weight: 700;
}

/* ==========================================
   SEKTÖR: RESTORAN & CAFE ÖZEL STİLLERİ
   ========================================== */
.cafe-hero {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #fff;
    border-bottom: 5px solid #f59e0b; /* Restoranlara uygun sıcak sarı renk */
}

/* Masa Yönetimi ve Mutfak Modülü Kartları */
.kitchen-module-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.icon-gold { color: #f59e0b; }

.table-layout-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

/* ==========================================
   SEKTÖR: RESTORAN & CAFE (KAPSAMLI VERSİYON)
   ========================================== */
.cafe-hero {
    background: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.95)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #fff;
    border-bottom: 5px solid #f59e0b;
}

/* Gelişmiş Özellik Kartları */
.adv-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.adv-feature-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: #f59e0b;
    transform: translateY(-5px);
}
.adv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #f59e0b;
    transition: height 0.3s ease;
}
.adv-feature-card:hover::before {
    height: 100%;
}
.adv-feature-icon {
    width: 65px;
    height: 65px;
    background: #fffbeb;
    color: #d97706;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}
.adv-feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.adv-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.adv-feature-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
}
.adv-feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    font-size: 12px;
}

/* Workflow (İş Akışı) Şeması Alanı */
.workflow-section {
    background-color: #0f172a;
    padding: 80px 0;
    color: #fff;
}
.workflow-box {
    text-align: center;
    padding: 20px;
}
.workflow-icon {
    font-size: 40px;
    color: #f59e0b;
    margin-bottom: 15px;
}
.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #475569;
    font-size: 24px;
}
@media (max-width: 991px) {
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

} /* <--- BU PARANTEZ EKSİKTİ! BURAYA EKLENDİ ---> */
/* ==========================================
   SEKTÖR: GİYİM & MAĞAZACILIK ÖZEL STİLLERİ
   ========================================== */
.fashion-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #fff;
    border-bottom: 5px solid #db2777; /* Giyim sektörü için şık pembe/rose-gold vurgusu */
}

/* Giyim Özellik Kartları (Mevcut adv-feature-card altyapısını kullanır, ikon renkleri özelleştirilir) */
.fashion-icon-box {
    width: 65px;
    height: 65px;
    background: #fdf2f8; /* Açık pembe arka plan */
    color: #db2777; /* Koyu pembe ikon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}
.adv-feature-card:hover .fashion-icon-box {
    background: #db2777;
    color: #fff;
    transition: all 0.3s ease;
}

/* Etkileşimli Banner (Satış Kanalları) */
.omnichannel-banner {
    background: #0f172a;
    border-radius: 24px;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}
.omnichannel-banner::after {
    content: '';
    position: absolute;
    right: -5%;
    top: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.2) 0%, rgba(219, 39, 119, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.omni-logo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.omni-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* ==========================================
   YENİ ÇOKLU KANAL (OMNICHANNEL) KART YAPISI
   ========================================== */
.omni-section { padding: 80px 0; background-color: #f8fafc; }
.omni-wrapper { background: #ffffff; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); border: 1px solid #e2e8f0; overflow: hidden; }
.omni-text-side { background: #0f172a; padding: 60px 50px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.omni-text-side h2 { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 20px; line-height: 1.3; }
.omni-text-side p { font-size: 16px; line-height: 1.8; color: #cbd5e1; margin-bottom: 0; }
.omni-brand-side { padding: 60px 50px; background: #ffffff; }
.omni-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.omni-brand-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 25px 15px; text-align: center; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.omni-brand-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(219, 39, 119, 0.1); border-color: #db2777; }
.omni-brand-icon { font-size: 36px; color: #db2777; margin-bottom: 15px; }
.omni-brand-name { font-weight: 700; color: #0f172a; font-size: 15px; }

@media (max-width: 767px) {
    .omni-card-grid { grid-template-columns: 1fr; }
    .omni-text-side, .omni-brand-side { padding: 40px 30px; }
}
}
/* ==========================================
   GİYİM SEO MAKALE ALANI - YENİ TASARIM
   ========================================== */
.fashion-seo-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}
.fashion-seo-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.fashion-seo-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.seo-feature-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.seo-feature-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(219, 39, 119, 0.08); /* Pembe gölge efekti */
    border-color: #db2777;
    transform: translateY(-5px);
}
.seo-box-icon {
    width: 55px;
    height: 55px;
    background: #fdf2f8;
    color: #db2777;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}
.seo-box-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.4;
}
.seo-box-text {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}/* ==========================================
   SEKTÖR: KUYUMCULUK ÖZEL STİLLERİ
   ========================================== */
.jewelry-hero {
    background: linear-gradient(rgba(10, 15, 26, 0.85), rgba(10, 15, 26, 0.95)), url('https://images.unsplash.com/photo-1584302179602-e4c3d3fd629d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #fff;
    border-bottom: 5px solid #d4af37; /* Lüks Altın Rengi (Gold) */
}

/* Kuyumcu Özellik Kartları (Mevcut adv-feature-card yapısı üzerine Gold revizyon) */
.jewelry-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #d4af37;
}
.jewelry-feature-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
}
.jewelry-icon-box {
    width: 65px;
    height: 65px;
    background: #fefce8; /* Çok açık sarı/gold arka plan */
    color: #d4af37; /* Altın sarısı ikon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.jewelry-feature-card:hover .jewelry-icon-box {
    background: #d4af37;
    color: #fff;
}
.jewelry-feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Kuyumcu SEO Makale Alanı */
.jewelry-seo-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}
.jewelry-seo-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.jewelry-seo-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.seo-gold-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.seo-gold-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08); /* Gold gölge efekti */
    border-color: #d4af37;
    transform: translateY(-5px);
}

/* ==========================================
   SEKTÖR: OTEL & KONAKLAMA ÖZEL STİLLERİ
   ========================================== */
.hotel-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1566073171639-4d8ef58f4819?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #fff;
    border-bottom: 5px solid #0d9488; /* Okyanus Turkuazı Vurgu */
}

/* Otel Özellik Kartları */
.hotel-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #0d9488;
}
.hotel-feature-card:hover {
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.1);
    border-color: #0d9488;
    transform: translateY(-5px);
}
.hotel-icon-box {
    width: 65px;
    height: 65px;
    background: #f0fdfa; /* Açık turkuaz arka plan */
    color: #0d9488; /* Koyu turkuaz ikon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.hotel-feature-card:hover .hotel-icon-box {
    background: #0d9488;
    color: #fff;
}
.hotel-feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Otel SEO Makale Alanı */
.hotel-seo-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}
.hotel-seo-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.hotel-seo-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.seo-hotel-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.seo-hotel-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.08); /* Turkuaz gölge */
    border-color: #0d9488;
    transform: translateY(-5px);
}


/* ==========================================
   SEKTÖR: PERAKENDE & TOPTAN TİCARET STİLLERİ
   ========================================== */
.trade-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #fff;
    border-bottom: 5px solid #4f46e5; /* İndigo Ticaret Vurgusu */
}

/* Ticaret Özellik Kartları */
.trade-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #4f46e5;
}
.trade-feature-card:hover {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
    transform: translateY(-5px);
}
.trade-icon-box {
    width: 65px;
    height: 65px;
    background: #eeeefd; /* Açık indigo arka plan */
    color: #4f46e5; /* Koyu indigo ikon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.trade-feature-card:hover .trade-icon-box {
    background: #4f46e5;
    color: #fff;
}
.trade-feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Ticaret SEO Makale Alanı */
.trade-seo-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}
.trade-seo-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.trade-seo-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.seo-trade-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.seo-trade-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.08); /* İndigo gölge */
    border-color: #4f46e5;
    transform: translateY(-5px);
}

