/* --- USP TIMELINE STYLE -kl-rp (GÜNCEL ANIMASYONLU) --- */
.usp-timeline-section-kl-rp {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.timeline-wrapper-kl-rp {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line-kl-rp {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e9ecef;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-progress-kl-rp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%; /* JS ile dinamik dolacak */
    background: var(--cyan-kl);
    border-radius: 2px;
    transition: height 0.3s ease-out;
}

/* --- ANIMASYON BAŞLANGIÇ DURUMU --- */
.reveal-item-kl-rp {
    position: relative;
    width: 50%;
    margin-bottom: 60px;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Sol ve Sağ Başlangıç Pozisyonları */
.left-kl-rp { left: 0; padding-right: 50px; text-align: right; transform: translateX(-40px); }
.right-kl-rp { left: 50%; padding-left: 50px; text-align: left; transform: translateX(40px); }

/* --- ACTIVE DURUMU (SCROLL İLE TETİKLENİR) --- */
.reveal-item-kl-rp.active-kl-rp {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot-kl-rp {
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-kl);
    font-size: 0px; /* Başlangıçta ikon görünmez */
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.left-kl-rp .timeline-dot-kl-rp { right: -24px; }
.right-kl-rp .timeline-dot-kl-rp { left: -24px; }

/* Aktif Olduğunda Tik İkonu Animasyonu */
.reveal-item-kl-rp.active-kl-rp .timeline-dot-kl-rp {
    border-color: var(--cyan-kl);
    background: var(--cyan-kl);
    color: #fff;
    font-size: 18px; /* İkon büyüyerek gelir */
    box-shadow: 0 0 20px rgba(0, 164, 204, 0.4);
}

.reveal-item-kl-rp.active-kl-rp .timeline-dot-kl-rp i {
    animation: check-pop-kl-rp 0.5s forwards 0.3s;
    transform: scale(0);
}

@keyframes check-pop-kl-rp {
    0% { transform: scale(0) rotate(-45deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.timeline-content-kl-rp h4 {
    color: var(--navy-kl);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 22px;
}

.timeline-content-kl-rp p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* --- BUTON STİLİ --- */
.btn-modern-kl-rp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cyan-kl);
    color: #fff !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 164, 204, 0.3);
    cursor:pointer;
}

.btn-modern-kl-rp:hover {
    background: var(--navy-kl);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.4);
}

/* --- MOBİL --- */
@media (max-width: 767px) {
    .timeline-line-kl-rp { left: 30px; }
    .reveal-item-kl-rp { width: 100%; padding-left: 70px; padding-right: 0; text-align: left; left: 0 !important; transform: translateX(30px); }
    .timeline-dot-kl-rp { left: 8px !important; }
}





/* SERVICES IN MAINPAGE -kl-rp */

.services-section-kl-rp {
    padding: 100px 0;
    background-color: #fcfcfc;
}

/* Kartın kendisini link (a) olarak kullanıyoruz */
.service-card-kl-rp {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid var(--cyan-kl);
    transition: all 0.4s ease;
    display: block; /* Tam alan tıklanabilirliği için */
    text-decoration: none !important; /* Link alt çizgisini kaldırır */
    color: inherit; /* Yazı renklerini korur */
}

/* Farklı kartlar için renk varyasyonları */
.card-color-3-kl-rp { border-top-color: var(--alert-kl); }

.service-card-kl-rp:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.12);
}

/* İkon Halkası */
.card-icon-circle-kl-rp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-kl) 0%, var(--navy-kl) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: -65px;
    margin-bottom: 20px;
    border: 4px solid #fff;
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.card-color-3-kl-rp .card-icon-circle-kl-rp {
    background: linear-gradient(135deg, var(--alert-kl) 0%, #8B0000 100%);
}

.service-card-kl-rp:hover .card-icon-circle-kl-rp {
    transform: scale(1.1) rotate(10deg);
}

.card-image-kl-rp {
    height: 200px;
    position: relative;
}

.card-image-kl-rp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge-kl-rp {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--navy-kl);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.card-body-kl-rp {
    padding: 25px 30px 35px;
}

.card-body-kl-rp h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-kl);
    margin-bottom: 15px;
}

.card-body-kl-rp p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Buton efekti (Artık div gibi davranır ama hover'da parlar) */
.btn-card-kl-rp {
    color: var(--cyan-kl);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-card-kl-rp:hover .btn-card-kl-rp {
    color: var(--navy-kl);
    padding-left: 5px; /* Hafif bir kayma efekti */
}

/* Başlık Vurgusu */
.color-accent-kl-rp {
    font-style: normal;
    color: var(--cyan-kl);
    position: relative;
}

.color-accent-kl-rp::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan-kl);
    opacity: 0.3;
}




/* 

PROF STATE

*/
/* --- EXPERTISE SECTION STYLE -kl-rp --- */
.expertise-section-kl-rp {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
}

.expertise-desc-kl-rp {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.expertise-desc-kl-rp strong {
    color: var(--navy-kl);
    font-weight: 700;
}

/* Ödeme Bilgisi Bandı */
.payment-badge-kl-rp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f0f7f9;
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 5px solid var(--cyan-kl);
    color: var(--navy-kl);
    font-weight: 700;
    font-size: 15px;
}

.payment-badge-kl-rp i {
    font-size: 20px;
    color: var(--cyan-kl);
}

/* Sağ Taraf Özellik Kartları */
.expertise-feature-box-kl-rp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-mini-kl-rp {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.feature-card-mini-kl-rp:hover {
    border-color: var(--cyan-kl);
    transform: scale(1.03);
}

.feature-card-mini-kl-rp .icon-kl-rp {
    width: 60px;
    height: 60px;
    background: var(--navy-kl);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-card-mini-kl-rp h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-kl);
    margin-bottom: 5px;
}

.feature-card-mini-kl-rp p {
    font-size: 14px;
    margin: 0;
    color: #777;
}

.delay-1-kl-rp { animation-delay: 0.5s; }
.delay-2-kl-rp { animation-delay: 1s; }

.animate-float-kl-rp {
    animation: floatAnim-kl-rp 4s ease-in-out infinite;
}

@keyframes floatAnim-kl-rp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .expertise-section-kl-rp { padding: 80px 0; }
    .payment-badge-kl-rp { width: 100%; justify-content: center; flex-direction: column; text-align: center; }
}



/* FOOTER */


/* --- FOOTER MODERN STYLE -kl-rp --- */
.footer-kl-rp {
    background-color: #05061c;
    padding: 80px 0 60px 0;
    color: #fff;
    border-top: 5px solid var(--cyan-kl);
}

.footer-item-kl-rp h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-item-kl-rp h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--cyan-kl);
}

.footer-item-kl-rp p {
    color: #ccc;
    line-height: 24px;
    font-size: 14px;
}

.menu-list-kl-rp {
    list-style: none;
    padding: 0;
}

.menu-list-kl-rp li {
    margin-bottom: 12px;
}

.menu-list-kl-rp li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.menu-list-kl-rp li a:hover {
    color: var(--cyan-kl);
    padding-left: 5px;
}

.social-icons-kl-rp {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons-kl-rp li a {
    width: 36px;
    height: 36px;
    background: #242147;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons-kl-rp li a:hover {
    background: var(--cyan-kl);
    transform: translateY(-3px);
}

.contact-info-kl-rp p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-info-kl-rp i {
    color: var(--cyan-kl);
    margin-top: 4px;
}

.sub-footer-kl-rp {
    background-color: #010e29;
    padding: 25px 0;
    border-top: 1px solid #222;
}

.sub-footer-kl-rp p {
    color: #777;
    margin: 0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-item-kl-rp {
        margin-bottom: 40px;
    }
}



/* CONTACT */

/* --- CONTACT PAGE CUSTOM STYLE -kl-rp --- */

.contact-information-kl-rp {
    padding: 80px 0;
    background-color: #f7f9fb;
}

.contact-item-kl-rp {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.contact-item-kl-rp:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--cyan-kl);
}

.contact-item-kl-rp i {
    font-size: 40px;
    color: var(--cyan-kl);
    margin-bottom: 20px;
}

.contact-item-kl-rp h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-kl);
    margin-bottom: 15px;
}

.contact-item-kl-rp p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.contact-item-kl-rp a {
    color: var(--cyan-kl);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

/* Form Alanı */
.contact-us-kl-rp {
    padding: 100px 0;
}

.section-heading-kl-rp {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading-kl-rp h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-kl);
}

.section-heading-kl-rp h2 em {
    font-style: normal;
    color: var(--cyan-kl);
}

.contact-form-kl-rp fieldset {
    margin-bottom: 20px;
}

.contact-form-kl-rp input, 
.contact-form-kl-rp textarea {
    border-radius: 10px !important;
    border: 1px solid #eee !important;
    padding: 15px 20px !important;
    background-color: #fcfcfc !important;
}

.contact-form-kl-rp input:focus, 
.contact-form-kl-rp textarea:focus {
    border-color: var(--cyan-kl) !important;
    box-shadow: 0 0 10px rgba(0, 164, 204, 0.1) !important;
}






/* --- MODERN ABOUT STYLE -kl-rp --- */

.about-section-kl-rp {
    padding: 100px 0;
    background: #ffffff;
}

.about-img-container-kl {
    position: relative;
    padding-right: 30px;
}

.main-about-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge-kl {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: var(--cyan-kl);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,164,204,0.3);
    z-index: 2;
}

.experience-badge-kl .number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge-kl .text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-tagline-kl {
    color: var(--cyan-kl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title-kl {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-kl);
    margin-bottom: 25px;
}

.section-title-kl em {
    font-style: normal;
    color: var(--cyan-kl);
}

.mission-box-kl {
    background: #f8f9fa;
    border-left: 5px solid var(--cyan-kl);
    padding: 25px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    border-radius: 0 15px 15px 0;
}

.mission-box-kl i {
    font-size: 30px;
    color: var(--cyan-kl);
    margin-right: 20px;
}

/* Benefits Section */
.benefits-section-kl-rp {
    padding: 100px 0;
    background: var(--navy-kl);
}

.benefit-card-kl {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.3s all ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.benefit-card-kl:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.benefit-card-kl.active {
    background: var(--cyan-kl);
}

.icon-wrap-kl {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #fff;
}

.benefit-card-kl h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card-kl p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 0;
}





/* --- PRICES & FAQ CUSTOM STYLE -kl-rp --- */

.price-policy-kl-rp {
    padding: 100px 0;
    background-color: #ffffff;
}

.price-card-kl {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.price-card-kl:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.price-card-kl.active {
    background: var(--navy-kl);
    color: #fff;
}

.price-card-kl.active p { color: rgba(255,255,255,0.8); }

.card-icon-kl {
    font-size: 40px;
    color: var(--cyan-kl);
    margin-bottom: 20px;
}

/* Accordion Design */
.faq-section-kl-rp {
    padding: 100px 0;
    background-color: #f0f4f8;
}

.accordion-item-kl {
    background: #fff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.accordion-button-kl {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--navy-kl);
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-button-kl:not(.collapsed) {
    color: var(--cyan-kl);
    background-color: #fff;
}

.accordion-body-kl {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* --- MODERN FAQ STYLE -kl-rp --- */

.faq-section-kl-rp {
    padding: 120px 0;
    background-color: #fcfdfe;
}

.faq-image-wrapper-kl {
    position: relative;
}

.faq-support-card-kl {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-support-card-kl i {
    font-size: 30px;
    color: var(--cyan-kl);
}

.faq-support-card-kl span {
    display: block;
    font-size: 13px;
    color: #888;
}

.faq-support-card-kl p {
    margin: 0;
    font-weight: 700;
    color: var(--navy-kl);
}

/* Accordion Styling */
.accordion-item-kl {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.accordion-item-kl:hover {
    border-color: var(--cyan-kl);
    box-shadow: 0 10px 25px rgba(0,164,204,0.05);
}

.accordion-button-kl {
    width: 100%;
    padding: 25px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.accordion-button-kl span {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-kl);
    text-align: left;
    padding-right: 15px;
}

/* "V" İkonu Animasyonu */
.arrow-icon {
    font-size: 18px;
    color: var(--cyan-kl);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button-kl:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

.accordion-button-kl:not(.collapsed) span {
    color: var(--cyan-kl);
}

.accordion-body-kl {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    border-top: none;
}

/* Mobil Düzenleme */
@media (max-width: 991px) {
    .faq-section-kl-rp { padding: 80px 0; }
    .faq-support-card-kl { position: static; margin-top: 20px; justify-content: center; }
    .accordion-button-kl { padding: 20px; }
    .accordion-button-kl span { font-size: 16px; }
}




/* --- UPDATED SEWER CLEANING STYLE -kl-rp --- */

.service-details-kl-rp {
    padding: 120px 0;
    background: #fdfdfd;
}

/* Görsel Çerçeve ve Rozetler */
.modern-img-frame-kl {
    position: relative;
    padding: 15px;
}

.main-img-kl {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 8px solid #fff;
}

.floating-badge-tech-kl {
    position: absolute;
    top: -10px;
    left: 40px;
    background: var(--navy-kl);
    color: #fff;
    padding: 12px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.experience-years-kl {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--cyan-kl);
    color: #fff;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,164,204,0.3);
}

.experience-years-kl strong { font-size: 30px; display: block; line-height: 1; }
.experience-years-kl span { font-size: 12px; text-transform: uppercase; }

/* Özellik Kutuçukları */
.feature-point-kl {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.feature-point-kl i { color: var(--cyan-kl); }
.feature-point-kl span { font-weight: 600; color: var(--navy-kl); }

/* Premium CTA Alanı */
.premium-cta-kl {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-top: 40px;
    border-left: 6px solid var(--cyan-kl);
}

.cta-icon-kl {
    width: 50px;
    height: 50px;
    background: #f0faff;
    color: var(--cyan-kl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.cta-text-kl span { display: block; font-size: 14px; color: #777; }
.cta-text-kl a { font-size: 22px; font-weight: 800; color: var(--navy-kl); text-decoration: none; }

/* Süreç Kartları (Process) */
.process-section-kl-rp { padding: 100px 0; background: var(--navy-kl); }

.modern-step-card-kl {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
}

.modern-step-card-kl.active {
    background: var(--cyan-kl);
    border-color: var(--cyan-kl);
}

.step-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.8;
}

.modern-step-card-kl h5 { color: #fff; font-weight: 700; margin-bottom: 15px; }
.modern-step-card-kl p { color: rgba(255,255,255,0.7); margin-bottom: 0; }





/* Clog Removal CS PLUS */
.bg-danger { background-color: #dc3545 !important; }
.text-danger { color: #dc3545 !important; }
.border-danger { border-color: #dc3545 !important; }
.bg-white-10 { background: rgba(255, 255, 255, 0.05) !important; }

.emergency-cta-kl {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.1);
    margin-top: 40px;
    border-left: 6px solid #dc3545;
}


/* Uzun kelime (Verstopfungsbeseitigung) için Responsive Fix */
.page-heading h1.long-word-fix {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto; /* Kelimeyi uygun yerden böler */
}


/* Mobil Ekranlar İçin (768px ve altı) */
@media (max-width: 768px) {
    .page-heading h1.long-word-fix {
        font-size: 30px !important; /* Başlık boyutunu biraz küçültüyoruz */
        line-height: 1.2;
    }
}

/* Çok Küçük Ekranlar İçin (480px ve altı - Telefonlar) */
@media (max-width: 480px) {
    .page-heading h1.long-word-fix {
        font-size: 26px !important; /* Ekrandan taşmaması için ideal boyut */
        letter-spacing: -0.5px; /* Harfleri biraz yaklaştırarak yer kazanıyoruz */
    }
    
    .page-heading .sub-title-kl {
        font-size: 14px !important;
    }
}

/* Sitenin genelinde sağa kaymayı engellemek için güvenlik önlemi */
.page-heading {
    overflow: hidden;
    width: 100%;
}





/* impressum */


/* --- LEGAL PAGES STYLE -kl-rp --- */

.legal-content-kl-rp {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.legal-box-kl {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #444;
}

.legal-title-kl {
    color: var(--navy-kl);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cyan-kl);
    display: inline-block;
}

.legal-box-kl p {
    font-size: 16px;
    margin-bottom: 10px;
}

.legal-box-kl a {
    color: var(--cyan-kl);
    text-decoration: none;
    transition: 0.3s;
}

.legal-box-kl a:hover {
    text-decoration: underline;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .legal-box-kl {
        padding: 30px 20px;
    }
}

/* Uzun Hukuki Terimler İçin Responsive Düzenleme */
.long-word-fix {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word; /* Kelimeyi gerekirse harf harf böler */
    hyphens: auto; /* Tarayıcı destekliyorsa heceden böler */
    display: block; /* Genişliği tam almasını sağlar */
    max-width: 100%;
}

/* Mobil Ekranlar İçin Özel Boyutlandırma */
@media (max-width: 576px) {
    .legal-title-kl.long-word-fix {
        font-size: 18px !important; /* Başlık boyutunu mobilde makul seviyeye çeker */
        line-height: 1.4;
        display: inline-block; /* Taşmayı engellemek için bazen inline-block daha iyi çalışır */
    }
}

@media (max-width: 380px) {
    .legal-title-kl.long-word-fix {
        font-size: 16px !important; /* Çok dar telefonlar için (iPhone SE vb.) */
    }
}






/* --- MODERN AMBER RECOMMENDATION PANEL --- */
.recommendation-panel-kl-rp.modern-amber {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fffcf0 0%, #fff8e1 100%);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #ffe082;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.05);
}

.recommendation-panel-kl-rp.modern-amber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #ffc107; /* Sol kenar sarı vurgu */
}

.recommendation-panel-kl-rp.modern-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.modern-amber .rec-icon-box {
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    /* Ampul parlaması için animasyon */
    animation: icon-glow-kl 2s infinite;
}

.modern-amber .rec-title {
    color: #856404; /* Koyu sarı/kahve tonu yazı */
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-amber .rec-text {
    color: #533f03;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.modern-amber .rec-text strong {
    color: #000;
    background: rgba(255, 193, 7, 0.2);
    padding: 0 4px;
    border-radius: 4px;
}

/* Ampul Parlama Efekti */
@keyframes icon-glow-kl {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3); }
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .recommendation-panel-kl-rp.modern-amber {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .recommendation-panel-kl-rp.modern-amber::before {
        width: 100%;
        height: 6px;
        top: 0;
    }
}












/* --- FULL WIDTH MODERN FAQ STYLE (GÜNCEL) --- */
.faq-modern-container-kl {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item-kl-faq {
    background: #fff;
    border: none !important;
    border-bottom: 1px solid #eee !important; /* Alt çizgi tasarımı */
    margin-bottom: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.accordion-item-kl-faq:first-child {
    border-top: 1px solid #eee !important;
}

/* Kartın geneline hover olunca metin rengini değiştirme */
.accordion-item-kl-faq:hover {
    background-color: #fcfdfe;
}

.accordion-button-kl-faq {
    width: 100% !important; /* Tam genişlik */
    cursor: pointer !important; /* El simgesi */
    padding: 35px 20px !important;
    background-color: transparent !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--navy-kl) !important;
    border: none !important;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;

    /* --- ÇİRKİN OUTLINE VE GÖLGE TEMİZLİĞİ --- */
    outline: none !important;
    box-shadow: none !important;
}

/* Tıklama anındaki (focus) varsayılan Bootstrap efektlerini sıfırla */
.accordion-button-kl-faq:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Soru numara tasarımı */
.faq-number {
    font-size: 14px;
    color: var(--cyan-kl);
    margin-right: 25px;
    font-weight: 800;
    opacity: 0.6;
    font-family: sans-serif;
}

.faq-text {
    flex: 1;
}

/* Artı (+) İkonu Konteynırı */
.arrow-wrapper-faq {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    flex-shrink: 0; /* Küçülmeyi engelle */
}

.icon-plus {
    font-size: 18px;
    color: #cbd5e0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

/* --- AÇIK (ACTIVE) DURUM AYARLARI --- */
.accordion-button-kl-faq:not(.collapsed) {
    color: var(--cyan-kl) !important;
    box-shadow: none !important; /* Açıkken gelen gölgeyi siler */
}

.accordion-button-kl-faq:not(.collapsed) .icon-plus {
    transform: rotate(45deg); /* Artı işaretini çarpıya döndürür */
    color: var(--cyan-kl);
}

/* Cevap Alanı (Body) */
.accordion-body-kl-faq {
    padding: 0 20px 40px 60px; /* Numaranın altına denk gelmemesi için geniş sol boşluk */
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    border: none;
    background-color: transparent;
}

.accordion-body-kl-faq strong {
    color: var(--navy-kl);
    font-weight: 700;
}

/* --- RESPONSIVE DOKUNUŞLAR --- */
@media (max-width: 768px) {
    .accordion-button-kl-faq {
        padding: 25px 15px !important;
        font-size: 17px !important;
    }
    .faq-number {
        margin-right: 15px;
        font-size: 12px;
    }
    .accordion-body-kl-faq {
        padding: 0 15px 30px 45px; /* Mobilde hizalama ayarı */
        font-size: 15px;
    }
    .arrow-wrapper-faq {
        width: 30px;
        height: 30px;
    }
}






/* --- FAQ ALT CTA & CALL BUTTON STYLE --- */
.faq-cta-wrapper-kl {
    text-align: center;
    padding: 20px;
}

.no-questions-text p {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-call-modern-kl {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    color: var(--navy-kl) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none !important;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn-call-modern-kl:hover {
    border-color: var(--cyan-kl);
    color: var(--cyan-kl) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 164, 204, 0.1);
}

/* Telefon simgesi için mavi yuvarlak ve nabız efekti */
.call-icon-pulse {
    width: 40px;
    height: 40px;
    background-color: var(--cyan-kl);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
}

.call-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--cyan-kl);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-blue-kl 2s infinite;
}

@keyframes pulse-blue-kl {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobil Düzen */
@media (max-width: 576px) {
    .btn-call-modern-kl {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }
}


/* --- MODERN CUSTOM CHECKBOX STYLE --- */
.modern-checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    line-height: 1.6;
    color: #64748b;
}

/* Varsayılan tarayıcı checkbox'ını gizle */
.modern-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Yeni özel kutucuk (Checkmark) */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mouse üstüne gelince */
.modern-checkbox-container:hover input ~ .checkmark {
    border-color: var(--cyan-kl);
    background-color: #fff;
}

/* Seçildiğinde (Checked) */
.modern-checkbox-container input:checked ~ .checkmark {
    background-color: var(--cyan-kl);
    border-color: var(--cyan-kl);
    transform: scale(1.05);
}

/* İçindeki tık (V) işareti */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Seçildiğinde tık işaretini göster */
.modern-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Link stili */
.checkbox-text a {
    color: var(--cyan-kl);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Mobil için tık alanı optimizasyonu */
@media (max-width: 767px) {
    .modern-checkbox-container {
        font-size: 13px;
    }
    .checkmark {
        height: 20px;
        width: 20px;
    }
}



