/* Sadece bu callout'a özel olan CSS */
.delta-callout-special {
    border-left-color: #e74c3c;
    background: linear-gradient(to right bottom, #fff, #fcf8e3);
}

.delta-callout-special:before {
    background: linear-gradient(to right, rgba(231, 76, 60, 0), rgba(231, 76, 60, 0.05));
}

.delta-callout-special .delta-callout-icon {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.delta-callout-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: #e74c3c;
    color: white;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
    z-index: 3;
    font-weight: bold;
    text-transform: uppercase;
}

.delta-callout-title-large {
    font-size: 24px;
    padding-right: 100px;
}

.delta-callout-btn {
    display: inline-block;
    color: #fff;
    background-color: #e74c3c;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    font-weight: 600;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
}

.delta-callout-btn:hover,
.delta-callout-btn:focus {
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
    transform: translateY(-1px);
}

/* Feature Gallery Custom Styles */
.feature-filter a {
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 8px;
}

.feature-filter a:hover {
    background-color: #edf2f7;
    color: #3498db !important;
}

.feature-filter .active a {
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.feature-item {
    margin-bottom: 30px;
}

.feature-panel {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.feature-panel .panel-body {
    padding: 0;
}

.feature-img-container {
    position: relative;
    overflow: hidden;
    padding: 6px;
    background-color: #f9f9f9;
}

.feature-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0 !important;
    border-top-left-radius: 9px !important;
    border-top-right-radius: 9px !important;
}

.feature-panel:hover .feature-img-container img {
    transform: scale(1.05);
}

.feature-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    background-color: #fff;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    transition: color 0.3s ease;
}

.feature-panel:hover .feature-title {
    color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .feature-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-filter li {
        margin-bottom: 8px;
    }

    .feature-img-container {
        height: 140px;
    }
}

/* Sayfa Tasarımına Uyumlu Satın Alma Düğmesi */
.delta-cta-button {
    display: block;
    margin: 30px 0;
    padding: 0;
    height: 70px;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 35px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.delta-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    text-decoration: none;
}

.delta-cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.4);
}

/* Parlama efekti */
.delta-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 75%);
    z-index: 1;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.delta-cta-button:hover::before {
    transform: translateX(100%);
}

.delta-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    color: white;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.delta-cta-icon {
    margin-right: 12px;
    font-size: 22px;
}

.delta-cta-arrow {
    margin-left: 12px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.delta-cta-button:hover .delta-cta-arrow {
    transform: translateX(5px);
}

/* Nabız atışı animasyonu - daha subtil */
.delta-cta-pulse {
    animation: pulseCTA 3s infinite;
}

@keyframes pulseCTA {
    0% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(52, 152, 219, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }
}

/* Alternatif renk seçenekleri - gerekirse bunları kullanabilirsiniz */

/* Mor Versiyon */
.delta-cta-button-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

.delta-cta-button-purple:hover {
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.5);
}

.delta-cta-button-purple:active {
    box-shadow: 0 3px 10px rgba(155, 89, 182, 0.4);
}

.delta-cta-button-purple.delta-cta-pulse {
    animation: pulseCtaPurple 3s infinite;
}

@keyframes pulseCtaPurple {
    0% {
        box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(155, 89, 182, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
    }
}

/* Yeşil Versiyon */
.delta-cta-button-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.delta-cta-button-green:hover {
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.delta-cta-button-green:active {
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.4);
}

.delta-cta-button-green.delta-cta-pulse {
    animation: pulseCtaGreen 3s infinite;
}

@keyframes pulseCtaGreen {
    0% {
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(46, 204, 113, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    }
}

/* Sıcak ve Uyumlu Turuncu Satın Alma Düğmesi */
.delta-cta-button-orange {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.delta-cta-button-orange:hover {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
    transform: translateY(-3px);
}

.delta-cta-button-orange:active {
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.4);
    transform: translateY(1px);
}

.delta-cta-button-orange.delta-cta-pulse {
    animation: pulseCtaOrange 3s infinite;
}

@keyframes pulseCtaOrange {
    0% {
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(243, 156, 18, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    }
}

/* Daha sıcak, daha az agresif turuncu ton */
.delta-cta-button-warm-orange {
    background: linear-gradient(135deg, #ff9966, #ff7e5f);
    box-shadow: 0 5px 15px rgba(255, 153, 102, 0.4);
}

.delta-cta-button-warm-orange:hover {
    box-shadow: 0 8px 25px rgba(255, 153, 102, 0.5);
    transform: translateY(-3px);
}

.delta-cta-button-warm-orange:active {
    box-shadow: 0 3px 10px rgba(255, 153, 102, 0.4);
    transform: translateY(1px);
}

.delta-cta-button-warm-orange.delta-cta-pulse {
    animation: pulseCtaWarmOrange 3s infinite;
}

@keyframes pulseCtaWarmOrange {
    0% {
        box-shadow: 0 5px 15px rgba(255, 153, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(255, 153, 102, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(255, 153, 102, 0.4);
    }
}

/* Şeftali tonu - daha yumuşak ve modern */
.delta-cta-button-peach {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
}

.delta-cta-button-peach:hover {
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.5);
    transform: translateY(-3px);
}

.delta-cta-button-peach:active {
    box-shadow: 0 3px 10px rgba(255, 179, 71, 0.4);
    transform: translateY(1px);
}

.delta-cta-button-peach.delta-cta-pulse {
    animation: pulseCtaPeach 3s infinite;
}

@keyframes pulseCtaPeach {
    0% {
        box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(255, 179, 71, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
    }
}

.delta-panel {
    border-radius: 8px;
    background: linear-gradient(to right bottom, #ffffff, #f8f9fa);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
}

.delta-panel:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.delta-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    position: relative;
}

.delta-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #e74c3c;
}

.delta-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
    text-align: justify;
}

.delta-highlight {
    color: #e74c3c;
    font-weight: 700;
}

.delta-feature-list {
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.delta-feature-item {
    border: none;
    border-left: 4px solid transparent;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    margin-bottom: 2px;
}

.delta-feature-item:hover {
    border-left-color: #3498db;
    background-color: #ecf0f1;
    padding-left: 20px;
}

.delta-feature-item strong {
    color: #2c3e50;
}

.delta-icon {
    margin-right: 10px;
    color: #3498db;
}

.delta-badge {
    float: right;
    background-color: #3498db;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 30px;
    font-weight: normal;
}

.delta-callout {
    position: relative;
    padding: 18px 20px;
    margin: 15px 0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    border-left: 5px solid #337ab7;
    overflow: hidden;
    transition: all 0.25s ease;
}

.delta-callout:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.delta-callout:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(51, 122, 183, 0), rgba(51, 122, 183, 0.05));
    z-index: 0;
}

.delta-callout-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.delta-callout-icon {
    margin-right: 12px;
    font-size: 20px;
    color: #337ab7;
    background: rgba(51, 122, 183, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.delta-callout-content {
    margin-top: 10px;
    color: #34495e;
    position: relative;
    z-index: 2;
    padding-left: 48px;
}

.delta-callout-content a {
    color: #337ab7;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px dotted #337ab7;
    padding-bottom: 2px;
}

.delta-callout-content a:hover {
    color: #23527c;
    border-bottom: 1px solid #23527c;
}

.delta-callout-content a i {
    margin-right: 8px;
}

.delta-callout-highlight {
    position: absolute;
    top: 3px;
    right: 1px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 30px;
    transform: rotate(15deg);
    opacity: 0.8;
    z-index: 3;
}

/* Varyasyonlar için özel renkler */
.delta-callout-primary {
    border-left-color: #3498db;
}

.delta-callout-primary .delta-callout-icon {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.delta-callout-success {
    border-left-color: #2ecc71;
}

.delta-callout-success .delta-callout-icon {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.delta-callout-warning {
    border-left-color: #f39c12;
}

.delta-callout-warning .delta-callout-icon {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.delta-callout-danger {
    border-left-color: #e74c3c;
}

.delta-callout-danger .delta-callout-icon {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.delta-callout-info {
    border-left-color: #1abc9c;
}

.delta-callout-info .delta-callout-icon {
    color: #1abc9c;
    background: rgba(26, 188, 156, 0.1);
}

.delta-callout-purple {
    border-left-color: #9b59b6;
}

.delta-callout-purple .delta-callout-icon {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

/* Müşteri yorumuna özel CSS */
.delta-callout-testimonial {
    border-left-color: #9b59b6;
    background: linear-gradient(to right bottom, #fff, #f9f5fd);
    padding-bottom: 25px;
}

.delta-callout-testimonial:before {
    background: linear-gradient(to right, rgba(155, 89, 182, 0), rgba(155, 89, 182, 0.05));
}

.delta-testimonial-header {
    font-style: italic;
    color: #9b59b6;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
}

.delta-testimonial-header:before {
    content: "\201C";
    font-size: 36px;
    position: absolute;
    left: 0;
    top: -10px;
    color: #9b59b6;
    opacity: 0.4;
}

.delta-testimonial-quote {
    border: none;
    padding: 0 0 0 48px;
    position: relative;
    margin: 0;
}

.delta-testimonial-quote p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    font-size: 15px;
}

.delta-testimonial-quote p:last-of-type {
    margin-bottom: 20px;
}

.delta-testimonial-quote footer {
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    position: relative;
}

.delta-testimonial-quote cite {
    color: #9b59b6;
    font-weight: normal;
    font-style: normal;
    margin-left: 8px;
    opacity: 0.9;
}

.delta-testimonial-image {
    margin-top: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.delta-testimonial-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.delta-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #9b59b6;
    opacity: 0.2;
    font-size: 24px;
}

/* Ana stil tanımlamaları */
.delta-features-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.delta-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0));
    border-radius: 0 0 0 100%;
    z-index: 1;
}

/* Sol Taraf - Delta Nedir? */
.delta-what-is {
    padding: 0;
}

.delta-section-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

.delta-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #e74c3c;
}

.delta-feature-list {
    border-radius: 6px;
    overflow: hidden;
    /*max-height: 500px;*/
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.delta-feature-list::-webkit-scrollbar {
    width: 5px;
}

.delta-feature-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.delta-feature-list::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.delta-feature-item {
    border: none;
    margin-bottom: 1px;
    padding: 10px 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.delta-feature-item:nth-child(odd) {
    background-color: #f8f9fa;
}

.delta-feature-item:nth-child(even) {
    background-color: #ffffff;
}

.delta-feature-item:hover {
    background-color: #eef7fc;
    transform: translateX(3px);
}

.delta-feature-icon {
    min-width: 24px;
    height: 24px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #3498db;
}

.delta-feature-text {
    font-weight: 500;
    color: #34495e;
    font-size: 14px;
}

.delta-footer-text {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 5px;
    color: #34495e;
    font-style: italic;
}

/* Sağ Taraf - Callout'lar */
.delta-benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.delta-benefit-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #3498db;
    overflow: hidden;
    transition: all 0.3s ease;
}

.delta-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.delta-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(52, 152, 219, 0.05) 100%);
}

.delta-benefit-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: rgba(52, 152, 219, 0.15);
}

.delta-benefit-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #2c3e50;
    position: relative;
    z-index: 2;
}

/* Renk varyasyonları */
.delta-benefit-primary {
    border-left-color: #3498db;
}

.delta-benefit-success {
    border-left-color: #2ecc71;
}

.delta-benefit-warning {
    border-left-color: #f39c12;
}

.delta-benefit-danger {
    border-left-color: #e74c3c;
}

.delta-benefit-info {
    border-left-color: #1abc9c;
}

.delta-benefit-purple {
    border-left-color: #9b59b6;
}

/* Responsive ayarlamalar */
@media (max-width: 991px) {
    .delta-benefit-card {
        flex: 1 1 100%;
    }
}

.delta-feature-header {
    margin: 30px 0 25px 0;
    position: relative;
}

.delta-feature-heading {
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.delta-feature-heading-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
    z-index: 1;
}

.delta-feature-heading-icon {
    display: inline-block;
    margin-right: 10px;
    color: #3498db;
}

.delta-feature-heading-highlight {
    color: #e74c3c;
    font-weight: 700;
}

@media (max-width: 767px) {
    .delta-feature-heading {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Başlık stili */
.delta-module-header {
    margin: 30px 0 25px 0;
    position: relative;
}

.delta-module-heading {
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.delta-module-heading-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(231, 76, 60, 0), rgba(231, 76, 60, 0.8) 20%, rgba(231, 76, 60, 0.8) 80%, rgba(231, 76, 60, 0));
    z-index: 1;
}

.delta-module-heading-icon {
    display: inline-block;
    margin-right: 10px;
    color: #e74c3c;
}

/* Özellikler listesi */
.delta-features-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.delta-feature-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.delta-feature-item {
    flex: 0 0 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 !important;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
}

.delta-feature-item:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.delta-feature-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .delta-feature-item {
        flex: 0 0 50%;
    }

    .delta-feature-item:nth-child(odd) {
        border-right: 1px solid #f1f1f1;
    }
}

.delta-feature-marker {
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

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

.delta-feature-title {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 3px;
}

.delta-feature-desc {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

.delta-feature-highlight {
    background-color: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.delta-feature-tag {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
    font-weight: 600;
}

.delta-feature-more {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

.delta-feature-more:hover {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.4);
}

.delta-feature-more i {
    margin-left: 5px;
}

.delta-feature-more-container {
    padding: 15px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

/* Derya Kale yorumu için özel stil - sadece bu yorum için özgün renkler kullanarak */
.delta-callout-testimonial-teal {
    border-left-color: #1abc9c;
    background: linear-gradient(to right bottom, #fff, #f0faf8);
    padding-bottom: 25px;
}

.delta-callout-testimonial-teal:before {
    background: linear-gradient(to right, rgba(26, 188, 156, 0), rgba(26, 188, 156, 0.05));
}

.delta-callout-testimonial-teal .delta-testimonial-header {
    color: #1abc9c;
}

.delta-callout-testimonial-teal .delta-testimonial-header:before,
.delta-callout-testimonial-teal .delta-quote-icon {
    color: #1abc9c;
}

.delta-callout-testimonial-teal .delta-testimonial-quote cite {
    color: #1abc9c;
}

.delta-testimonial-highlight {
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px dotted #1abc9c;
}

.delta-testimonial-points p {
    position: relative;
    padding-left: 20px;
}

.delta-testimonial-points p:before {
    content: "•";
    color: #1abc9c;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Başlık stili - tüm modüller için ortak */
.delta-module-header {
    margin: 30px 0 25px 0;
    position: relative;
}

.delta-module-heading {
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.delta-module-heading-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
}

.delta-module-heading-icon {
    display: inline-block;
    margin-right: 10px;
}

/* Özellikler listesi */
.delta-features-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.delta-feature-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.delta-feature-item {
    flex: 0 0 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 !important;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
}

.delta-feature-item:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.delta-feature-item:last-child {
    border-bottom: none;
}

.delta-feature-item.full-width {
    flex: 0 0 100% !important;
}

@media (min-width: 768px) {
    .delta-feature-item {
        flex: 0 0 50%;
    }

    .delta-feature-item:nth-child(odd):not(.full-width) {
        border-right: 1px solid #f1f1f1;
    }
}

.delta-feature-marker {
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

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

.delta-feature-title {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 3px;
}

.delta-feature-desc {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

.delta-feature-highlight {
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.delta-feature-tag {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.delta-feature-tags {
    margin-top: 8px;
}

/* Öğretmen Paneli modülü renkleri */
.delta-module-teacher .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 73, 94, 0), rgba(52, 73, 94, 0.8) 20%, rgba(52, 73, 94, 0.8) 80%, rgba(52, 73, 94, 0));
}

.delta-module-teacher .delta-module-heading-icon {
    color: #34495e;
}

.delta-module-teacher .delta-feature-marker {
    color: #34495e;
}

.delta-module-teacher .delta-feature-highlight {
    background-color: rgba(52, 73, 94, 0.08);
    color: #34495e;
}

/* Ders Takvimi modülü renkleri */
.delta-module-calendar .delta-module-heading-line {
    background: linear-gradient(to right, rgba(41, 128, 185, 0), rgba(41, 128, 185, 0.8) 20%, rgba(41, 128, 185, 0.8) 80%, rgba(41, 128, 185, 0));
}

.delta-module-calendar .delta-module-heading-icon {
    color: #2980b9;
}

.delta-module-calendar .delta-feature-marker {
    color: #2980b9;
}

.delta-module-calendar .delta-feature-highlight {
    background-color: rgba(41, 128, 185, 0.08);
    color: #2980b9;
}

/* Başlık stili - tüm modüller için ortak */
.delta-module-header {
    margin: 30px 0 25px 0;
    position: relative;
}

.delta-module-heading {
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.delta-module-heading-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
    z-index: 1;
}

.delta-module-heading-icon {
    display: inline-block;
    margin-right: 10px;
    color: #3498db;
}

/* Özellikler listesi - tüm modüller için ortak */
.delta-features-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.delta-feature-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.delta-feature-item {
    flex: 0 0 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 !important;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
}

.delta-feature-item:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.delta-feature-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .delta-feature-item {
        flex: 0 0 50%;
    }

    .delta-feature-item:nth-child(odd) {
        border-right: 1px solid #f1f1f1;
    }
}

.delta-feature-marker {
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

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

.delta-feature-title {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 3px;
}

.delta-feature-desc {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

.delta-feature-highlight {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.delta-feature-more {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

.delta-feature-more:hover {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.4);
}

.delta-feature-more i {
    margin-left: 5px;
}

.delta-feature-more-container {
    padding: 15px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

/* Modül-spesifik renkler */
.delta-module-accounting .delta-module-heading-line {
    background: linear-gradient(to right, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.8) 20%, rgba(46, 204, 113, 0.8) 80%, rgba(46, 204, 113, 0));
}

.delta-module-accounting .delta-module-heading-icon {
    color: #2ecc71;
}

.delta-module-accounting .delta-feature-marker {
    color: #2ecc71;
}

.delta-module-accounting .delta-feature-highlight {
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

/* Özel Ders modülü renkleri */
.delta-module-private .delta-module-heading-line {
    background: linear-gradient(to right, rgba(231, 76, 60, 0), rgba(231, 76, 60, 0.8) 20%, rgba(231, 76, 60, 0.8) 80%, rgba(231, 76, 60, 0));
}

.delta-module-private .delta-module-heading-icon {
    color: #e74c3c;
}

.delta-module-private .delta-feature-marker {
    color: #e74c3c;
}

.delta-module-private .delta-feature-highlight {
    background-color: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
}

/* Grup Yönetimi modülü renkleri */
.delta-module-group .delta-module-heading-line {
    background: linear-gradient(to right, rgba(155, 89, 182, 0), rgba(155, 89, 182, 0.8) 20%, rgba(155, 89, 182, 0.8) 80%, rgba(155, 89, 182, 0));
}

.delta-module-group .delta-module-heading-icon {
    color: #9b59b6;
}

.delta-module-group .delta-feature-marker {
    color: #9b59b6;
}

.delta-module-group .delta-feature-highlight {
    background-color: rgba(155, 89, 182, 0.08);
    color: #9b59b6;
}

/* Ödev sistemi modülü renkleri */
.delta-module-homework .delta-module-heading-line {
    background: linear-gradient(to right, rgba(243, 156, 18, 0), rgba(243, 156, 18, 0.8) 20%, rgba(243, 156, 18, 0.8) 80%, rgba(243, 156, 18, 0));
}

.delta-module-homework .delta-module-heading-icon {
    color: #f39c12;
}

.delta-module-homework .delta-feature-marker {
    color: #f39c12;
}

.delta-module-homework .delta-feature-highlight {
    background-color: rgba(243, 156, 18, 0.08);
    color: #f39c12;
}

/* Öğrenci/Veli Paneli modülü renkleri */
.delta-module-panel .delta-module-heading-line {
    background: linear-gradient(to right, rgba(26, 188, 156, 0), rgba(26, 188, 156, 0.8) 20%, rgba(26, 188, 156, 0.8) 80%, rgba(26, 188, 156, 0));
}

.delta-module-panel .delta-module-heading-icon {
    color: #1abc9c;
}

.delta-module-panel .delta-feature-marker {
    color: #1abc9c;
}

.delta-module-panel .delta-feature-highlight {
    background-color: rgba(26, 188, 156, 0.08);
    color: #1abc9c;
}

/* Öğrenci/Veli Paneli modülü renkleri */
.delta-module-panel .delta-module-heading-line {
    background: linear-gradient(to right, rgba(26, 188, 156, 0), rgba(26, 188, 156, 0.8) 20%, rgba(26, 188, 156, 0.8) 80%, rgba(26, 188, 156, 0));
}

.delta-module-panel .delta-module-heading-icon {
    color: #1abc9c;
}

.delta-module-panel .delta-feature-marker {
    color: #1abc9c;
}

.delta-module-panel .delta-feature-highlight {
    background-color: rgba(26, 188, 156, 0.08);
    color: #1abc9c;
}

/* Başlık stili - önceki kodları dahil etmemek için ana sınıfları tekrar tanımlıyorum */
.delta-module-header {
    margin: 30px 0 25px 0;
    position: relative;
}

.delta-module-heading {
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.delta-module-heading-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
}

.delta-module-heading-icon {
    display: inline-block;
    margin-right: 10px;
}

/* Özellikler listesi */
.delta-features-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.delta-feature-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.delta-feature-item {
    flex: 0 0 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 !important;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
}

.delta-feature-item:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.delta-feature-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .delta-feature-item {
        flex: 0 0 50%;
    }

    .delta-feature-item:nth-child(odd) {
        border-right: 1px solid #f1f1f1;
    }
}

.delta-feature-marker {
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

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

.delta-feature-title {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 3px;
}

.delta-feature-desc {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

/* Deniz Hoca yorumu için özel stil - mavi tonlarını kullanarak */
.delta-callout-testimonial-blue {
    border-left-color: #3498db;
    background: linear-gradient(to right bottom, #fff, #f0f7fc);
    padding-bottom: 25px;
}

.delta-callout-testimonial-blue:before {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.05));
}

.delta-callout-testimonial-blue .delta-testimonial-header {
    color: #3498db;
}

.delta-callout-testimonial-blue .delta-testimonial-header:before,
.delta-callout-testimonial-blue .delta-quote-icon {
    color: #3498db;
}

.delta-callout-testimonial-blue .delta-testimonial-quote cite {
    color: #3498db;
}

.delta-testimonial-emphasis {
    font-weight: 600;
    font-style: italic;
    color: #2980b9;
}

.delta-testimonial-signature {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.delta-testimonial-signature img {
    margin-top: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 120px;
}

.delta-testimonial-signature img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.delta-mobile-apps-banner {
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.delta-mobile-apps-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path></svg>') no-repeat center center;
    background-size: 150px;
    opacity: 0.2;
}

.delta-mobile-apps-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.delta-mobile-apps-icon {
    margin-right: 15px;
    font-size: 28px;
}

.delta-mobile-apps-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.delta-app-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.delta-app-store-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.delta-app-store-link:hover {
    transform: translateY(-3px);
}

.delta-app-store-badge {
    height: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

@media (max-width: 767px) {
    .delta-mobile-apps-banner {
        padding: 20px;
    }

    .delta-mobile-apps-title {
        font-size: 20px;
    }

    .delta-app-stores {
        justify-content: center;
    }
}

/* Ders Programı Robotu modülü özel renkleri */
.delta-module-schedule .delta-module-heading-line {
    background: linear-gradient(to right, rgba(142, 68, 173, 0), rgba(142, 68, 173, 0.8) 20%, rgba(142, 68, 173, 0.8) 80%, rgba(142, 68, 173, 0));
}

.delta-module-schedule .delta-module-heading-icon {
    color: #8e44ad;
}

.delta-module-schedule .delta-feature-marker {
    color: #8e44ad;
}

.delta-module-schedule .delta-feature-highlight {
    background-color: rgba(142, 68, 173, 0.08);
    color: #8e44ad;
}

/* Sadece bu modül için kullanılan yeni CSS sınıfları */
.delta-badge {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

.delta-feature-link {
    display: inline-block;
    color: #3498db;
    font-size: 13px;
    margin-top: 5px;
    text-decoration: none;
    transition: all 0.2s;
}

.delta-feature-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.delta-feature-link i {
    margin-right: 5px;
}

.delta-feature-image {
    margin-top: 10px;
    display: inline-block;
    border: 2px solid #f3f3f3;
    border-radius: 4px;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.delta-feature-image:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Website modülü özel renkleri */
.delta-module-website .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
}

.delta-module-website .delta-module-heading-icon {
    color: #3498db;
}

.delta-module-website .delta-feature-marker {
    color: #3498db;
}

.delta-module-website .delta-feature-highlight {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

/* Website modülü için özel etiketler */
.delta-web-tag {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 500;
}

.delta-feature-subtitle {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 2px;
    font-style: italic;
}

/* Adilcan Bey yorumu için özel stil - yeşil tonlarını kullanarak */
.delta-callout-testimonial-green {
    border-left-color: #2ecc71;
    background: linear-gradient(to right bottom, #fff, #f0fcf5);
    padding-bottom: 25px;
}

.delta-callout-testimonial-green:before {
    background: linear-gradient(to right, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.05));
}

.delta-callout-testimonial-green .delta-testimonial-header {
    color: #2ecc71;
}

.delta-callout-testimonial-green .delta-testimonial-header:before,
.delta-callout-testimonial-green .delta-quote-icon {
    color: #2ecc71;
}

.delta-callout-testimonial-green .delta-testimonial-quote cite {
    color: #2ecc71;
}

.delta-testimonial-year-badge {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 30px;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
    font-weight: bold;
}

.delta-short-testimonial {
    font-size: 16px;
    line-height: 1.6;
}

/* Optik Okuma modülü özel renkleri */
.delta-module-optical .delta-module-heading-line {
    background: linear-gradient(to right, rgba(243, 156, 18, 0), rgba(243, 156, 18, 0.8) 20%, rgba(243, 156, 18, 0.8) 80%, rgba(243, 156, 18, 0));
}

.delta-module-optical .delta-module-heading-icon {
    color: #f39c12;
}

.delta-module-optical .delta-feature-marker {
    color: #f39c12;
}

.delta-module-optical .delta-feature-highlight {
    background-color: rgba(243, 156, 18, 0.08);
    color: #f39c12;
}

/* API modülü özel renkleri */
.delta-module-api .delta-module-heading-line {
    background: linear-gradient(to right, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.8) 20%, rgba(46, 204, 113, 0.8) 80%, rgba(46, 204, 113, 0));
}

.delta-module-api .delta-module-heading-icon {
    color: #2ecc71;
}

.delta-module-api .delta-feature-marker {
    color: #2ecc71;
}

.delta-module-api .delta-feature-highlight {
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

/* Optik modülü için özel etiketler */
.delta-tag {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

.delta-tag-optical {
    background-color: #f39c12;
    color: white;
}

.delta-tag-api {
    background-color: #2ecc71;
    color: white;
}

.delta-api-link {
    display: inline-block;
    color: #2ecc71;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px dotted #2ecc71;
    padding-bottom: 2px;
}

.delta-api-link:hover {
    color: #27ae60;
    border-bottom: 1px solid #27ae60;
    text-decoration: none;
}

.delta-api-link i {
    margin-right: 5px;
}

/* Yoklama modülü özel renkleri */
.delta-module-attendance .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
}

.delta-module-attendance .delta-module-heading-icon {
    color: #3498db;
}

.delta-module-attendance .delta-feature-marker {
    color: #3498db;
}

.delta-module-attendance .delta-feature-highlight {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

/* İletişim modülü özel renkleri */
.delta-module-communication .delta-module-heading-line {
    background: linear-gradient(to right, rgba(155, 89, 182, 0), rgba(155, 89, 182, 0.8) 20%, rgba(155, 89, 182, 0.8) 80%, rgba(155, 89, 182, 0));
}

.delta-module-communication .delta-module-heading-icon {
    color: #9b59b6;
}

.delta-module-communication .delta-feature-marker {
    color: #9b59b6;
}

.delta-module-communication .delta-feature-highlight {
    background-color: rgba(155, 89, 182, 0.08);
    color: #9b59b6;
}

/* Yoklama durumları için badge'ler */
.delta-attendance-status {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 30px;
    margin: 2px;
    font-weight: 500;
}

.delta-status-present {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.delta-status-absent {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.delta-status-late {
    background-color: rgba(243, 156, 18, 0.2);
    color: #d35400;
}

.delta-status-excused {
    background-color: rgba(52, 152, 219, 0.2);
    color: #2980b9;
}

.delta-status-report {
    background-color: rgba(155, 89, 182, 0.2);
    color: #8e44ad;
}

.delta-status-unknown {
    background-color: rgba(149, 165, 166, 0.2);
    color: #7f8c8d;
}

.delta-feature-statuses {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* İletişim yöntemleri için ikonlar */
.delta-communication-method {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size: 13px;
    color: #7f8c8d;
}

.delta-communication-method i {
    margin-right: 4px;
    color: #9b59b6;
}

.delta-feature-methods {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Musa Bican yorumu için özel stil - turuncu tonlarını kullanarak */
.delta-callout-testimonial-orange {
    border-left-color: #f39c12;
    background: linear-gradient(to right bottom, #fff, #fdf7e8);
    padding-bottom: 25px;
}

.delta-callout-testimonial-orange:before {
    background: linear-gradient(to right, rgba(243, 156, 18, 0), rgba(243, 156, 18, 0.05));
}

.delta-callout-testimonial-orange .delta-testimonial-header {
    color: #f39c12;
}

.delta-callout-testimonial-orange .delta-testimonial-header:before,
.delta-callout-testimonial-orange .delta-quote-icon {
    color: #f39c12;
}

.delta-callout-testimonial-orange .delta-testimonial-quote cite {
    color: #f39c12;
}

.delta-highlight-box {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.delta-highlight-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(243, 156, 18, 0.15);
    z-index: -1;
    border-radius: 3px;
}

.delta-testimonial-art {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    /*                opacity: 0.07;*/
    transform: rotate(10deg);
}

.delta-testimonial-art svg {
    width: 100%;
    height: 100%;
    fill: #f39c12;
}

/* Online Eğitim modülü özel renkleri */
.delta-module-online .delta-module-heading-line {
    background: linear-gradient(to right, rgba(231, 76, 60, 0), rgba(231, 76, 60, 0.8) 20%, rgba(231, 76, 60, 0.8) 80%, rgba(231, 76, 60, 0));
}

.delta-module-online .delta-module-heading-icon {
    color: #e74c3c;
}

.delta-module-online .delta-feature-marker {
    color: #e74c3c;
}

.delta-module-online .delta-feature-highlight {
    background-color: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
}

/* Çıktı İşlemleri modülü özel renkleri */
.delta-module-output .delta-module-heading-line {
    background: linear-gradient(to right, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.8) 20%, rgba(46, 204, 113, 0.8) 80%, rgba(46, 204, 113, 0));
}

.delta-module-output .delta-module-heading-icon {
    color: #2ecc71;
}

.delta-module-output .delta-feature-marker {
    color: #2ecc71;
}

.delta-module-output .delta-feature-highlight {
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

/* İstatistik modülü özel renkleri */
.delta-module-statistics .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
}

.delta-module-statistics .delta-module-heading-icon {
    color: #3498db;
}

.delta-module-statistics .delta-feature-marker {
    color: #3498db;
}

.delta-module-statistics .delta-feature-highlight {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

/* Öğrenci Takip modülü özel renkleri */
.delta-module-tracking .delta-module-heading-line {
    background: linear-gradient(to right, rgba(155, 89, 182, 0), rgba(155, 89, 182, 0.8) 20%, rgba(155, 89, 182, 0.8) 80%, rgba(155, 89, 182, 0));
}

.delta-module-tracking .delta-module-heading-icon {
    color: #9b59b6;
}

.delta-module-tracking .delta-feature-marker {
    color: #9b59b6;
}

.delta-module-tracking .delta-feature-highlight {
    background-color: rgba(155, 89, 182, 0.08);
    color: #9b59b6;
}

/* Entegrasyon logoları için stil */
.delta-integration-logos {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.delta-integration-logo {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    color: #34495e;
}

.delta-integration-logo i {
    margin-right: 5px;
    font-size: 16px;
}

.delta-integration-zoom {
    color: #2d8cff;
}

.delta-integration-adobe {
    color: #ff0000;
}

/* Belge tiplerini gösteren ikonlar */
.delta-document-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.delta-document-type {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 3px 8px;
    border-radius: 4px;
}

.delta-document-type i {
    margin-right: 5px;
    color: #2ecc71;
}

/* İstatistik tipleri için stil */
.delta-stat-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.delta-stat-type {
    display: inline-block;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Öğrenci durumları için stil */
.delta-student-statuses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.delta-student-status {
    display: inline-block;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 30px;
}

.delta-status-active {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.delta-status-expired {
    background-color: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.delta-status-cancelled {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.delta-status-lead {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Gelişmiş Arayüz modülü özel renkleri */
.delta-module-interface .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
}

.delta-module-interface .delta-module-heading-icon {
    color: #3498db;
}

.delta-module-interface .delta-feature-marker {
    color: #3498db;
}

.delta-module-interface .delta-feature-highlight {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

/* Özel Güvenlik modülü özel renkleri */
.delta-module-security .delta-module-heading-line {
    background: linear-gradient(to right, rgba(44, 62, 80, 0), rgba(44, 62, 80, 0.8) 20%, rgba(44, 62, 80, 0.8) 80%, rgba(44, 62, 80, 0));
}

.delta-module-security .delta-module-heading-icon {
    color: #2c3e50;
}

.delta-module-security .delta-feature-marker {
    color: #2c3e50;
}

.delta-module-security .delta-feature-highlight {
    background-color: rgba(44, 62, 80, 0.08);
    color: #2c3e50;
}

/* Adaptif arama özellikleri için stil */
.delta-search-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.delta-search-feature {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
    display: flex;
    align-items: center;
}

.delta-search-feature i {
    margin-right: 5px;
    font-size: 12px;
}

/* Responsive etiketleri için stil */
.delta-device-compatibility {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.delta-device {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 12px;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.delta-device i {
    margin-right: 5px;
}

/* Güvenlik özellik etiketleri için stil */
.delta-security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.delta-security-feature {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(44, 62, 80, 0.08);
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.delta-security-feature i {
    margin-right: 5px;
    font-size: 12px;
}

/* Yetkilendirme modülü özel renkleri */
.delta-module-auth .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 73, 94, 0), rgba(52, 73, 94, 0.8) 20%, rgba(52, 73, 94, 0.8) 80%, rgba(52, 73, 94, 0));
}

.delta-module-auth .delta-module-heading-icon {
    color: #34495e;
}

.delta-module-auth .delta-feature-marker {
    color: #34495e;
}

/* Görüşme Notları modülü özel renkleri */
.delta-module-notes .delta-module-heading-line {
    background: linear-gradient(to right, rgba(155, 89, 182, 0), rgba(155, 89, 182, 0.8) 20%, rgba(155, 89, 182, 0.8) 80%, rgba(155, 89, 182, 0));
}

.delta-module-notes .delta-module-heading-icon {
    color: #9b59b6;
}

.delta-module-notes .delta-feature-marker {
    color: #9b59b6;
}

/* Araçlar modülü özel renkleri */
.delta-module-tools .delta-module-heading-line {
    background: linear-gradient(to right, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.8) 20%, rgba(46, 204, 113, 0.8) 80%, rgba(46, 204, 113, 0));
}

.delta-module-tools .delta-module-heading-icon {
    color: #2ecc71;
}

.delta-module-tools .delta-feature-marker {
    color: #2ecc71;
}

/* Belgeler modülü özel renkleri */
.delta-module-docs .delta-module-heading-line {
    background: linear-gradient(to right, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.8) 20%, rgba(52, 152, 219, 0.8) 80%, rgba(52, 152, 219, 0));
}

.delta-module-docs .delta-module-heading-icon {
    color: #3498db;
}

.delta-module-docs .delta-feature-marker {
    color: #3498db;
}

/* Stok modülü özel renkleri */
.delta-module-stock .delta-module-heading-line {
    background: linear-gradient(to right, rgba(243, 156, 18, 0), rgba(243, 156, 18, 0.8) 20%, rgba(243, 156, 18, 0.8) 80%, rgba(243, 156, 18, 0));
}

.delta-module-stock .delta-module-heading-icon {
    color: #f39c12;
}

.delta-module-stock .delta-feature-marker {
    color: #f39c12;
}

/* Demirbaş modülü özel renkleri */
.delta-module-inventory .delta-module-heading-line {
    background: linear-gradient(to right, rgba(211, 84, 0, 0), rgba(211, 84, 0, 0.8) 20%, rgba(211, 84, 0, 0.8) 80%, rgba(211, 84, 0, 0));
}

.delta-module-inventory .delta-module-heading-icon {
    color: #d35400;
}

.delta-module-inventory .delta-feature-marker {
    color: #d35400;
}

/* Yetki tipleri için etiketler */
.delta-auth-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.delta-auth-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 12px;
    background-color: rgba(52, 73, 94, 0.1);
    color: #34495e;
    display: flex;
    align-items: center;
}

.delta-auth-type i {
    margin-right: 5px;
    font-size: 12px;
}

/* Not tipleri için etiketler */
.delta-note-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.delta-note-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    display: flex;
    align-items: center;
}

.delta-note-type i {
    margin-right: 5px;
    font-size: 12px;
}

/* Yedekleme özellikleri için etiketler */
.delta-backup-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.delta-backup-feature {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    display: flex;
    align-items: center;
}

.delta-backup-feature i {
    margin-right: 5px;
    font-size: 12px;
}

/* Stok özellikleri için etiketler */
.delta-stock-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.delta-stock-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    display: flex;
    align-items: center;
}

.delta-stock-type i {
    margin-right: 5px;
    font-size: 12px;
}

/* Demirbaş özellikleri için etiketler */
.delta-inventory-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.delta-inventory-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    background-color: rgba(211, 84, 0, 0.1);
    color: #d35400;
    display: flex;
    align-items: center;
}

.delta-inventory-type i {
    margin-right: 5px;
    font-size: 12px;
}

.delta-video-gallery {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.delta-video-gallery::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.delta-gallery-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.delta-gallery-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #9b59b6);
    border-radius: 3px;
}

.delta-gallery-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.delta-gallery-subtitle {
    color: #7f8c8d;
    font-size: 16px;
}

.delta-video-container {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.delta-video-container:hover {
    transform: translateY(-5px);
}

.delta-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.delta-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.delta-video-wrapper:hover::before {
    opacity: 1;
}

.delta-video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: white;
    font-weight: 500;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.delta-video-wrapper:hover .delta-video-title {
    opacity: 1;
    transform: translateY(-5px);
}

.delta-video-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
}

.delta-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.delta-video-wrapper:hover .delta-video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.embed-responsive {
    border-radius: 8px;
    overflow: hidden;
}

/* Ana konteyner stili */
.delta-packages-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.delta-packages-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

/* Sekmeler stili */
.delta-tabs {
    display: flex;
    border-bottom: 1px solid #e1e4e8;
    margin-bottom: 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.delta-tab {
    padding: 12px 20px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.delta-tab.active {
    color: #3498db;
}

.delta-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.delta-tab.active::after {
    transform: scaleX(1);
}

.delta-tab:hover {
    color: #3498db;
}

/* İçerik bölümü */
.delta-tab-content {
    display: none;
}

.delta-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kart stilleri */
.delta-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.delta-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.delta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.delta-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delta-card-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
}

.delta-card-icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
}

.delta-card-badge {
    background-color: #3498db;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.delta-card-free {
    background-color: #2ecc71;
}

.delta-card-paid {
    background-color: #f39c12;
}

.delta-card-content {
    padding: 15px 20px;
}

.delta-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delta-module-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.delta-module-item:last-child {
    border-bottom: none;
}

.delta-module-marker {
    color: #3498db;
    margin-right: 10px;
    font-weight: bold;
    line-height: 1.5;
}

.delta-module-text {
    flex: 1;
    line-height: 1.5;
    color: #34495e;
}

.delta-module-text strong {
    color: #2c3e50;
}

.delta-module-sms {
    margin-top: 5px;
    font-size: 12px;
    color: #7f8c8d;
    padding-left: 20px;
}

/* Özelleştirme bölümü */
.delta-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delta-custom-item {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.delta-custom-item:last-child {
    border-bottom: none;
}

.delta-custom-heading {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.delta-custom-heading-number {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 10px;
}

.delta-custom-sublist {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 35px;
}

.delta-custom-subitem {
    padding: 5px 0;
    color: #34495e;
    position: relative;
    padding-left: 20px;
}

.delta-custom-subitem::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #3498db;
}

.delta-custom-note {
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #7f8c8d;
    font-size: 14px;
}

.delta-custom-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.delta-custom-note a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Yapay Zeka bölümü */
.delta-ai-section {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.delta-ai-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.delta-ai-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.delta-ai-item {
    padding: 8px 12px;
    margin-bottom: 8px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.delta-ai-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .delta-card {
        flex: 1 1 100%;
    }

    .delta-tabs {
        justify-content: flex-start;
    }
}

/* FAQ ve Yardım Bölümü Stili */
.delta-help-section {
    margin: 30px 0;
}

.delta-faq-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.delta-faq-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.delta-faq-item {
    border-bottom: 1px solid #f1f1f1;
    overflow: hidden;
}

.delta-faq-item:last-child {
    border-bottom: none;
}

.delta-faq-header {
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: #f8f9fa;
}

.delta-faq-header:hover {
    background-color: #f1f5f9;
}

.delta-faq-icon {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.delta-faq-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-top: 5px;
}

.delta-faq-content {
    padding: 5px 25px 25px 70px;
}

.delta-faq-text {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.delta-faq-text strong {
    color: #2c3e50;
}

.delta-faq-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.delta-faq-list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.delta-faq-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Yardım Kılavuzu Kartı */
.delta-guide-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.delta-guide-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.delta-guide-content {
    flex: 1;
}

.delta-guide-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.delta-guide-button {
    background-color: white;
    color: #3498db;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 10px;
}

.delta-guide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: #2980b9;
    text-decoration: none;
}

.delta-guide-icon {
    font-size: 50px;
    margin-left: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .delta-guide-card {
        flex-direction: column;
        text-align: center;
    }

    .delta-guide-icon {
        margin: 0 0 20px 0;
    }
}

/* Ana konteyner stili */
.delta-cta-section {
    margin: 40px 0;
    padding: 0 15px;
}

/* Ana satın alma butonu */
.delta-main-cta {
    display: block;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    border-radius: 10px;
    padding: 0;
    height: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 25px;
}

.delta-main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
    text-decoration: none;
}

.delta-main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.delta-main-cta:hover::before {
    transform: translateX(100%);
}

.delta-main-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.delta-main-cta-icon {
    margin-right: 15px;
    font-size: 28px;
}

.delta-main-cta-arrow {
    margin-left: 15px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.delta-main-cta:hover .delta-main-cta-arrow {
    transform: translateX(5px);
}

.delta-main-cta-pulse {
    animation: pulseCTA 2s infinite;
}

@keyframes pulseCTA {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Diğer butonlar */
.delta-cta-buttons {
    display: flex;
    gap: 15px;
}

.delta-secondary-cta {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.delta-secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.delta-secondary-cta:hover::before {
    transform: translateX(100%);
}

.delta-secondary-cta:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.delta-cta-free {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
}

.delta-cta-free:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.delta-cta-demo {
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: white;
}

.delta-cta-demo:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.delta-cta-presentation {
    background: linear-gradient(to right, #9b59b6, #8e44ad);
    color: white;
}

.delta-cta-presentation:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
}

.delta-cta-icon {
    margin-right: 10px;
    font-size: 18px;
}

.delta-cta-text {
    position: relative;
    z-index: 2;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .delta-cta-buttons {
        flex-direction: column;
    }

    .delta-secondary-cta {
        margin-bottom: 15px;
    }
}

/* Yoklama Sistemi v2.1 Compact Styles */
.delta-module-attendance .delta-badge-new {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.delta-module-attendance .delta-version-badge {
    background: #9b59b6;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
}

.delta-module-attendance .delta-performance-badge {
    background: #27ae60;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
}

.delta-module-attendance .delta-feature-new {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border: 1px solid #3498db;
    border-radius: 6px;
    padding: 8px;
    margin: 5px 0;
}

.delta-module-attendance .delta-feature-statuses {
    margin-top: 8px;
}

.delta-module-attendance .delta-attendance-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin: 2px 2px 2px 0;
    color: white;
}

.delta-module-attendance .delta-status-present {
    background: #27ae60;
}

.delta-module-attendance .delta-status-absent {
    background: #e74c3c;
}

.delta-module-attendance .delta-status-late {
    background: #9b59b6;
}

.delta-module-attendance .delta-status-excused {
    background: #3498db;
}

.delta-module-attendance .delta-status-report {
    background: #f39c12;
}

.delta-module-attendance .delta-status-unknown {
    background: #95a5a6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .delta-module-attendance .delta-version-badge,
    .delta-module-attendance .delta-performance-badge {
        font-size: 9px;
        padding: 2px 4px;
    }

    .delta-module-attendance .delta-attendance-status {
        font-size: 10px;
        padding: 2px 6px;
    }
}

/* E-Fatura Modülü Özel Stilleri */
.delta-module-einvoice .delta-module-heading-line {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.delta-tag-einvoice {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 600;
}

.delta-einvoice-link {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.delta-einvoice-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.delta-badge-free {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    margin-top: 5px;
    font-weight: 600;
}


/* Delta Avantajları - Ek Renk Varyasyonları */
.delta-benefit-orange {
    border-left-color: #f39c12;
}

.delta-benefit-orange::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(243, 156, 18, 0.05) 100%);
}

.delta-benefit-orange .delta-benefit-icon {
    color: rgba(243, 156, 18, 0.15);
}

.delta-benefit-teal {
    border-left-color: #1abc9c;
}

.delta-benefit-teal::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(26, 188, 156, 0.05) 100%);
}

.delta-benefit-teal .delta-benefit-icon {
    color: rgba(26, 188, 156, 0.15);
}

.delta-benefit-dark {
    border-left-color: #34495e;
}

.delta-benefit-dark::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(52, 73, 94, 0.05) 100%);
}

.delta-benefit-dark .delta-benefit-icon {
    color: rgba(52, 73, 94, 0.15);
}

.delta-benefit-pink {
    border-left-color: #e91e63;
}

.delta-benefit-pink::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(233, 30, 99, 0.05) 100%);
}

.delta-benefit-pink .delta-benefit-icon {
    color: rgba(233, 30, 99, 0.15);
}

.delta-benefit-blue {
    border-left-color: #2196f3;
}

.delta-benefit-blue::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(33, 150, 243, 0.05) 100%);
}

.delta-benefit-blue .delta-benefit-icon {
    color: rgba(33, 150, 243, 0.15);
}

.delta-benefit-green {
    border-left-color: #4caf50;
}

.delta-benefit-green::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(76, 175, 80, 0.05) 100%);
}

.delta-benefit-green .delta-benefit-icon {
    color: rgba(76, 175, 80, 0.15);
}

/* Animasyon efektleri */
.delta-benefit-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.delta-benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.delta-benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.delta-benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.delta-benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.delta-benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.delta-benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.delta-benefit-card:nth-child(7) {
    animation-delay: 0.7s;
}

.delta-benefit-card:nth-child(8) {
    animation-delay: 0.8s;
}

.delta-benefit-card:nth-child(9) {
    animation-delay: 0.9s;
}

.delta-benefit-card:nth-child(10) {
    animation-delay: 1.0s;
}

.delta-benefit-card:nth-child(11) {
    animation-delay: 1.1s;
}

.delta-benefit-card:nth-child(12) {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover efektinde ikonu büyütme */
.delta-benefit-card:hover .delta-benefit-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Responsive ayarlamalar - 3 sütunlu düzen için */
@media (min-width: 992px) and (max-width: 1199px) {
    .delta-benefit-card {
        flex: 1 1 calc(33.333% - 15px);
    }
}

/* Tablet görünümü için 2 sütun */
@media (min-width: 768px) and (max-width: 991px) {
    .delta-benefit-card {
        flex: 1 1 calc(50% - 15px);
    }
}

/* Daha dengeli bir görünüm için minimum yükseklik */
.delta-benefit-card {
    min-height: 100px;
    display: flex;
    align-items: center;
}

.delta-benefit-title {
    line-height: 1.4;
}

