/* CPQ Detayları CSS */
:root {
    --cpqd-primary: #229c0a;
    --cpqd-primary-dark: #06c285;
    --cpqd-dark-bg: #000000;
    --cpqd-card-bg: rgba(15, 25, 35, 0.7);
    --cpqd-text-color: #ffffff;
    --cpqd-text-light: rgba(255, 255, 255, 0.8);
    --cpqd-border-color: rgba(34, 156, 10, 0.2);
}

.cpqd-body {
    /*background-color: var(--cpqd-dark-bg);
    background-image: 
        linear-gradient(125deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 25, 35, 0.95) 100%),
        url('path-to-background-image.jpg');*/
    background-size: cover;
    background-attachment: fixed;
    color: var(--cpqd-text-color);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* İki sütunlu ana layout */
.cpqd-container {   
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative; /* Relative positioning for container */
}
/* Hero Bölümü - Sol Taraf */
.cpqd-hero {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin: 0  auto;
    margin-top: 60px;
    margin-bottom: 0;
}
/* Hero Bölümü - Sol Taraf */
.cpqd-hero-left {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 40px;
    padding-top: 100px;
    position: sticky;
    top: 20px;
    z-index: 1; /* Ensure proper stacking context */
    max-height: calc(100vh - 40px); /* Limit height to viewport minus margins */
    overflow-y: auto; /* Add scrolling to hero section if content is too long */
}

.cpqd-logo {
    text-align: center!important; 
    margin-bottom: 30px!important;
    margin-top: 10px!important;
    position: relative!important;
    z-index: 5!important; /* Higher z-index to ensure logo stays on top */
}

.cpqd-logo img {
    max-width: 25%;
    height: auto;
    position: relative;
    z-index: 5; /* Higher z-index to ensure logo stays on top */
}


.cpqd-logo-subtitle {
    text-shadow: rgba(34, 156, 10, 0.3) 5px 5px 0px;
    font-size: 4rem;
    color: #229c0a;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 10px;
}

.cpqd-intro {
    color: var(--cpqd-text-light);
}

.cpqd-title {
    color: var(--cpqd-primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cpqd-description {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.7;
}

.cpqd-description strong {
    color: var(--cpqd-text-color);
}

.cpqd-advantages {
    margin: 30px 0;
}

.cpqd-advantages h3 {
    color: var(--cpqd-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cpqd-advantage-list {
    list-style-type: none;
    padding: 0;
}

.cpqd-advantage-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.cpqd-advantage-list li:before {
    content: "•";
    color: var(--cpqd-primary);
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cpqd-advantage-list li strong {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.cpqd-highlight {
    font-style: italic;
    margin-top: 25px;
    font-size: 1.05rem;
    border-left: 3px solid var(--cpqd-primary);
    padding-left: 15px;
}

/* Özellikler Grid Bölümü - Sağ Taraf */
.cpqd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
    position: relative;
    z-index: 2; /* Ensure proper stacking */
    padding-top: 100px;
}

.cpqd-feature-card {
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1), transparent 100%);
    border: 1px solid var(--cpqd-border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cpqd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 156, 10, 0.1);
    border-color: var(--cpqd-primary);
}

.cpqd-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 156, 10, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    font-size: 24px;
    padding:20px;
}

.cpqd-feature-icon::before{
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.cpqd-feature-title {
    color: var(--cpqd-primary);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpqd-feature-description {
    color: rgba(255, 255, 255, 0.801);
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}

/* CTA Bölümü */
.cpqd-cta {
    text-align: center;
    margin: 50px 0 20px;
    grid-column: 1 / -1; /* İki sütuna da yayılsın */
    position: relative;
    z-index: 10; /* Highest z-index to ensure it's always visible */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--cpqd-border-color);
}

.cpqd-cta-button {
    background-color: var(--cpqd-primary);
    color: var(--cpqd-dark-bg);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cpqd-cta-button:hover {
    background-color: var(--cpqd-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 156, 10, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    /* Büyük tablet ve daha küçük ekranlar için tek sütun düzenine geç */
    .cpqd-container {
        grid-template-columns: 1fr;
    }
    
    .cpqd-hero {
        position: relative;
        top: 0;
        max-height: none; /* Remove max-height limit on mobile */
        overflow-y: visible; /* Remove scrolling on mobile */
    }
    
    .cpqd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cpqd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpqd-logo-subtitle {
        font-size: 2rem; /* Smaller font for medium screens */
    }
}

@media (max-width: 768px) {
    .cpqd-hero {
        padding: 30px;
    }
    
    .cpqd-logo h1 {
        font-size: 2.5rem;
    }
    
    .cpqd-logo-subtitle {
        font-size: 1.8rem; /* Even smaller on mobile */
        line-height: 1.3;
    }
    
    .cpqd-title {
        font-size: 1.5rem;
    }
    
    .cpqd-cta-button {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 1199px) {
    .cpqd-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cpqd-hero {
        padding: 20px;
    }
    
    .cpqd-logo-subtitle {
        font-size: 3rem;
    }
.cpqd-features-grid{padding-top:0px!important;}




.cpqd-hero-left{
    padding-top:0px!important;
    position: relative!important;
    top:0px!important;
    max-height: fit-content!important;
    overflow-y: hidden;
}
.cpqd-logo img{max-width: 50%!important}


}

.btn-contact{text-align: center;}
.btn-contact a{background-color: var(--primary-color);border: none;box-shadow: 0 5px 15px rgba(34, 156, 10, 0.3);margin-top: 10px;margin-bottom: 10px;padding: 12px 28px;font-weight: 600;letter-spacing: 0.5px;display: inline-flex
;border-radius: 20px;align-items: center;justify-content: center;gap: 0.5rem;font-weight: 800;transition: all 0.3s ease;cursor: pointer;background: #229c0a;color: #000000;padding: 1rem 2rem;font-size: 1.125rem;}
.btn-contact:hover a{background-color: #229c0a;transform: translateY(-3px);box-shadow: 0 8px 20px rgba(34, 156, 10, 0.4);}