/* 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;

    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 20px 0px 20px;
    position: sticky;
    top: 80px;
    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 {
font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}
.cpqd-description strong {
    color: var(--cpqd-text-color);
    font-weight: 600!important;
}
.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;
    font-size: 1.1rem;
}
.cpqd-advantages h2{
        font-style: normal;
    line-height: 54px;
    font-size: 22px;
    font-weight: 800;
    color:#229c0a;
}
.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: 600;
    font-size: 1.1rem;
}
.cpqd-highlight {
    margin-top: 25px;
    font-size: 1rem;
    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.2rem;
    text-align: center;
    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;
        line-height: 1.5;
    text-align: center;
        text-align: -webkit-center;
    flex-grow: 1;
}
/* CTA Bölümü */
.cpqd-cta {
    text-align: center;
    margin: 20px 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: 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 */
    }
    .cpqd-features-grid{grid-template-columns: repeat(2, 1fr) !important;}
}
@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;
    }

}


@media (max-width: 700px) {
    .cpqd-features-grid{grid-template-columns: repeat(2, 1fr) !important;}

        .cpqd-feature-title, .cpqd-feature-description{text-align: left; justify-content: left;}
}
@media (min-width: 700px) and (max-width: 1199px){.cpqd-features-grid{grid-template-columns: repeat(3, 1fr) !important;} }
@media (max-width: 1199px) {
    .cpqd-cta-button{font-size: .9em;}
        .cpqd-feature-description{font-size: .9em; line-height: 1.3; }
        .cpqd-feature-title{line-height: 20px;}
    .cpqd-features-grid {
        grid-template-columns: 1fr;
    }
    /*.cpqd-hero {
        padding: 20px;
    }*/
    .cpqd-logo-subtitle {
        font-size: 3rem;
    }
.cpqd-features-grid{padding-top:30px!important;}

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

    .cpqd-features-grid{grid-template-columns: repeat(4, 1fr);}
    .sidebar{max-width: 400px;}
}
.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);}
/*cpq*/
    .cpqd-features-grid{ max-width: 1400px; margin: 0 auto; padding: 40px 20px;}
    .sidebar{grid-template-columns: repeat(3, 1fr) !important;     width: 80%; margin-left: auto; padding: 0px 20px;}
    .sidebar a{display: flex ; align-items: center; gap:10px; margin-bottom:20px}
    .all-products{background:#1a1d20; border-radius: 12px; padding: 25px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); width: 100%;}
/*sidebar yeni*/
.sidebar {
    /*border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;*/
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    /*border: 1px solid #333;*/
}
/* Arama Kutusu */
.sidebar .search-box {
    padding: 20px;
    border-bottom: 1px solid #333;
    background-color: #1f1f1f;
    position: relative;
}
.sidebar .search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background-color: #2a2a2a;
    color: #e0e0e0;
    transition: all 0.3s;
}
.sidebar .search-input:focus {
    border-color: #229c0a;
    box-shadow: 0 0 0 2px rgba(34, 156, 10, 0.1);
}
.sidebar .search-input::placeholder {
    color: #666;
}
.sidebar .search-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: #229c0a;
    cursor: pointer;
}
/* Dropdown Menü */
.sidebar .dropdown-section {
    padding: 20px;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}
.sidebar .dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 14px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23229c0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
    transition: border-color 0.3s;
}
.sidebar .dropdown:focus {
    border-color: #229c0a;
}
/* Service List - HER ZAMAN GÖRÜNÜR */
.sidebar .service-list {
    margin-top: 15px;
}
.sidebar .service-title {
    color: #e0e0e0; /* Yazı beyaz/gri */
    font-size: 1rem; /* Font boyutu 1rem */
    font-weight:600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sidebar .service-title::before {
    content: "▸";
    color: #229c0a; /* İkon yeşil */
    margin-right: 8px;
    font-size: 1.2rem;
}
/* Alt hizmetler HER ZAMAN GÖRÜNÜR */
.sidebar .sub-services {
    margin-left: 25px;
    display: block; /* Her zaman görünür */
}
.sidebar .sub-service {
    color: #999;
    font-size: 0.9rem;
    padding: 5px 0;
    cursor: default; /* Tıklanamaz */
    padding-left: 10px;
}
/* Talep Formu */
.sidebar .form-section {
    padding: 20px;
    background-color: #1f1f1f;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.sidebar .form-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #e0e0e0;
}
.sidebar .form-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #229c0a;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}
.sidebar .form-group {
    margin-bottom: 15px;
}
.sidebar .form-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #444;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background-color: transparent;
    color: #e0e0e0;
}
.sidebar .form-input::placeholder {
    color: #666;
}
.sidebar .form-input:focus {
    border-bottom-color: #229c0a;
    box-shadow: 0 1px 0 0 #229c0a;
}
.sidebar .form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #444;
    font-size: 14px;
    outline: none;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    background-color: transparent;
    color: #e0e0e0;
    transition: all 0.3s;
}
.sidebar .form-textarea::placeholder {
    color: #666;
}
.sidebar .form-textarea:focus {
    border-bottom-color: #229c0a;
    box-shadow: 0 1px 0 0 #229c0a;
}
.sidebar .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #229c0a 0%, #229c0a 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(34, 156, 10, 0.3);
}
.sidebar .submit-btn:hover {
    background: linear-gradient(135deg, #1e8a09 0%, #229c0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 156, 10, 0.4);
}
.sidebar .submit-btn:active {
    transform: translateY(0);
}
/*mobil sidebar*/
/* Sidebar - Mobilde de görünür */
/* Mobil cihazlarda (768px ve altı) */
@media (max-width: 1201px) {
        .sidebar .search-box{display:none;}
    .sidebar {
        display: flex; /* Mobilde görünür ve yan yana */
        padding: 10px;
        width: 100%;
    }
    /* Dropdown bölümü - Sol taraf */
    .sidebar .dropdown-section {
        flex: 1;
        padding: 15px;
        background-color: #1f1f1f;
        border-radius: 8px 0 0 8px;
        border-right: 1px solid #333;
    }
    .sidebar .dropdown {
        width: 100%;
        padding: 10px;
        border: 1px solid #333;
        border-radius: 4px;
        font-size: 12px;
        background-color: #2a2a2a;
        color: #e0e0e0;
        cursor: pointer;
        outline: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23229c0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 16px;
        padding-right: 30px;
        margin-bottom: 10px;
    }
    .sidebar .service-list {
        margin-top: 10px;
    }
    .sidebar .service-category {
        margin-bottom: 8px;
    }
    .sidebar .service-title {
        color: #e0e0e0;
        font-size: 0.75rem; /* Küçük font */
        font-weight: 500;
        padding: 5px 0;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s;
    }
    .sidebar .service-title:hover {
        color: #229c0a;
        padding-left: 3px;
    }
    .sidebar .service-title::before {
        content: "▸";
        color: #229c0a;
        margin-right: 5px;
        font-size: 0.9rem;
    }
    /* Form bölümü - Sağ taraf */
    .sidebar .form-section {
        flex: 1;
        padding: 15px;
        background-color: #1f1f1f;
        border-radius: 0 8px 8px 0;
    }
    .sidebar .form-header {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: #229c0a;
        padding: 8px 10px;
        margin-bottom: 15px;
        border-radius: 4px;
        font-size: 11px;
        border: 1px solid #229c0a;
        text-align: center;
    }
    .sidebar .form-group {
        margin-bottom: 10px;
    }
    .sidebar .form-input {
        width: 100%;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid #444;
        font-size: 12px;
        outline: none;
        transition: all 0.3s;
        background-color: transparent;
        color: #e0e0e0;
    }
    .sidebar .form-input::placeholder {
        color: #666;
        font-size: 11px;
    }
    .sidebar .form-input:focus {
        border-bottom-color: #229c0a;
    }
    .sidebar .form-textarea {
        width: 100%;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid #444;
        font-size: 12px;
        outline: none;
        resize: none;
        height: 60px;
        font-family: inherit;
        background-color: transparent;
        color: #e0e0e0;
        transition: all 0.3s;
    }
    .sidebar .form-textarea::placeholder {
        color: #666;
        font-size: 11px;
    }
    .sidebar .form-textarea:focus {
        border-bottom-color: #229c0a;
    }
    .sidebar .submit-btn {
        width: 100%;
        padding: 10px;
        background: linear-gradient(135deg, #229c0a 0%, #2fb50c 100%);
        color: white;
        border: none;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 15px;
    }
    .sidebar .submit-btn:hover {
        background: linear-gradient(135deg, #1e8a09 0%, #229c0a 100%);
    }
}
/* Çok küçük ekranlar için (400px altı) */
@media (max-width: 400px) {
    .sidebar {
        font-size: 11px;
        max-width:100%!important;
    }
    .sidebar .dropdown-section,
    .sidebar .form-section {
        padding: 10px;
    }
    .sidebar .service-title {
        font-size: 0.7rem;
    }
    .sidebar .form-input,
    .sidebar .form-textarea {
        font-size: 11px;
        padding: 6px 8px;
    }
    .sidebar .submit-btn {
        font-size: 11px;
        padding: 8px;
    }
}






/* Varsayılan durum */
.hide-sm {
    display: block;
}

.hide-sm-flex{display:block;}
.show-sm-flex{display:none;}

.show-sm {
    display: none;
}

/* 1201px ve altı için */
@media (max-width: 1201px) {
    .hide-sm {
        display: none !important;
    }
    .show-sm {
        display: block !important;
    }



        .cpqd-cta-button {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (min-width: 700px) and (max-width: 1199px){    .show-sm-flex{display:flex!important;}





}


@media (max-width: 700px) {.show-sm-flex{display:block;}}

@media (min-width: 1408px) {

.cpqd-hero-left{width:1000px}
..sidebar{width:400px;}





}

@media (min-width: 872px) and (max-width: 1408px) {

.cpqd-hero-left{width:850px}
..sidebar{width:400px;}





}