/*--------------------------------------------------------------
  Proje      : Kırklareli Çilingirci
  Dosya      : style-regions-service.css
  Versiyon   : 1.0.0
  Geliştirici: Karaca Teknoloji
  Website    : https://karacatechnology.com/
  Açıklama   : Bu dosya Karaca Teknoloji tarafından geliştirilmiştir.
               İzinsiz kopyalanamaz, çoğaltılamaz veya kullanılamaz.
--------------------------------------------------------------*/

/* ============================================
   SERVICE DETAIL HEADER
   ============================================ */

.service-detail-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-detail-header .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Service Detail Badges */
.service-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 36px;
}

.service-badge.location {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-badge.type {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-badge i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

/* Feature Badges */
.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 48px;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-badge span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Service Detail Contact Card */
.service-detail-contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 100px;
}

.emergency-badge {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.emergency-badge i {
    font-size: 1rem;
    flex-shrink: 0;
}

.service-detail-contact-card h4 {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.service-phone-btn {
    display: block;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    transition: var(--transition);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.service-phone-btn i {
    margin-right: 8px;
}

.service-whatsapp-btn {
    display: block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.service-whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* Service Info Box */
.service-info-box {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item span {
    color: #666;
    font-size: 0.95rem;
}

.info-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* ============================================
   SERVICE DETAIL CONTENT SECTION
   ============================================ */

.service-detail-content-section {
    background: white;
    padding: 60px 0;
}

.content-box {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.content-box h2 {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-box h2 i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.content-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Feature Item */
.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 15px;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item h5 {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Types List */
.service-types-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-types-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-types-list li:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.service-types-list li i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-types-list li .text-content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-types-list li strong {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 4px;
    display: block;
}

.service-types-list li span {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--light-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: var(--border-radius);
}

.step-content h5 {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--light-gray);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
    background: white;
    padding: 15px 20px;
    line-height: 1.5;
    min-height: 56px;
}

.accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.accordion-button::after {
    flex-shrink: 0;
}

.accordion-body {
    padding: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-contact-card h4 {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.sidebar-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
    transition: var(--transition);
    min-height: 52px;
}

.sidebar-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.sidebar-phone-btn i {
    margin-right: 8px;
}

.sidebar-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    min-height: 48px;
}

.sidebar-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.sidebar-whatsapp-btn i {
    margin-right: 8px;
}

.sidebar-box {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-box h5 {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-box h5 i {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.sidebar-services-list,
.sidebar-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li,
.sidebar-areas-list li {
    margin-bottom: 10px;
}

.sidebar-services-list a,
.sidebar-areas-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.95rem;
    min-height: 40px;
}

.sidebar-services-list a:hover,
.sidebar-areas-list a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-services-list a i,
.sidebar-areas-list a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - REGION SERVICE DETAIL PAGE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .service-detail-contact-card,
    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .service-detail-header {
        padding: 40px 0;
    }

    .service-detail-header h1 {
        font-size: 2.2rem;
    }

    .service-detail-header .lead {
        font-size: 1.1rem;
    }

    .content-box h2 {
        font-size: 1.5rem;
    }

    .service-detail-content-section {
        padding: 50px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .service-detail-header {
        padding: 30px 0;
    }

    .service-detail-header h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .service-detail-header .lead {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .service-detail-badges {
        gap: 8px;
        margin-bottom: 15px;
    }

    .service-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
        min-height: 32px;
    }

    .service-detail-features {
        gap: 10px;
        margin-top: 20px;
    }

    .feature-badge {
        padding: 10px 15px;
        flex: 1 1 calc(50% - 5px);
        min-height: 44px;
    }

    .feature-badge i {
        font-size: 1.3rem;
    }

    .feature-badge span {
        font-size: 0.85rem;
    }

    .service-detail-contact-card,
    .sidebar-contact-card {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .service-detail-contact-card h4,
    .sidebar-contact-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .emergency-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 15px;
    }

    .service-phone-btn,
    .sidebar-phone-btn {
        font-size: 1.3rem;
        padding: 12px 20px;
        min-height: 50px;
    }

    .service-whatsapp-btn,
    .sidebar-whatsapp-btn {
        font-size: 1rem;
        padding: 12px 20px;
        min-height: 46px;
    }

    .service-info-box {
        padding: 15px;
        margin-top: 15px;
    }

    .info-item {
        gap: 10px;
        padding: 8px 0;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .info-item span {
        font-size: 0.9rem;
    }

    .service-detail-content-section {
        padding: 40px 0;
    }

    .content-box {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .content-box h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
        gap: 10px;
    }

    .content-box h2 i {
        font-size: 1.2rem;
    }

    .content-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-item {
        padding: 15px;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feature-item i {
        font-size: 1.3rem;
    }

    .feature-item h5 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .service-types-list li {
        gap: 12px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .service-types-list li i {
        font-size: 1.2rem;
    }

    .service-types-list li strong {
        font-size: 0.95rem;
    }

    .service-types-list li span {
        font-size: 0.9rem;
    }

    .process-step {
        gap: 15px;
        margin-bottom: 25px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .process-step:not(:last-child)::after {
        left: 22px;
        top: 45px;
    }

    .step-content {
        padding: 12px 15px;
    }

    .step-content h5 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .accordion-button {
        padding: 12px 15px;
        font-size: 0.95rem;
        min-height: 50px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .sidebar-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .sidebar-box h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .sidebar-services-list a,
    .sidebar-areas-list a {
        font-size: 0.9rem;
        padding: 8px;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .service-detail-header h1 {
        font-size: 1.6rem;
    }

    .service-detail-header .lead {
        font-size: 0.95rem;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .feature-badge {
        padding: 8px 12px;
    }

    .feature-badge i {
        font-size: 1.2rem;
    }

    .feature-badge span {
        font-size: 0.8rem;
    }

    .service-detail-contact-card,
    .sidebar-contact-card {
        padding: 20px 15px;
    }

    .emergency-badge {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    .service-phone-btn,
    .sidebar-phone-btn {
        font-size: 1.2rem;
        padding: 10px 15px;
        min-height: 48px;
    }

    .service-whatsapp-btn,
    .sidebar-whatsapp-btn {
        font-size: 0.95rem;
        padding: 10px 15px;
        min-height: 44px;
    }

    .content-box {
        padding: 20px 15px;
    }

    .content-box h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .content-box p {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .feature-item h5 {
        font-size: 0.95rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .service-types-list li {
        padding: 10px;
    }

    .service-types-list li i {
        font-size: 1.1rem;
    }

    .service-types-list li strong {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .service-types-list li span {
        font-size: 0.85rem;
    }

    .process-step {
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .process-step:not(:last-child)::after {
        left: 19px;
        top: 40px;
    }

    .step-content {
        padding: 10px 12px;
    }

    .step-content h5 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .accordion-button {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 46px;
    }

    .accordion-body {
        padding: 12px;
        font-size: 0.85rem;
    }

    .sidebar-box {
        padding: 18px 15px;
    }

    .sidebar-box h5 {
        font-size: 0.95rem;
    }

    .sidebar-services-list a,
    .sidebar-areas-list a {
        font-size: 0.85rem;
        padding: 7px;
    }
}

/* Very Small Mobile */
@media (max-width: 399px) {
    .service-detail-header h1 {
        font-size: 1.4rem;
    }

    .service-phone-btn,
    .sidebar-phone-btn {
        font-size: 1.1rem;
    }

    .content-box h2 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .process-step:not(:last-child)::after {
        left: 17px;
        top: 36px;
    }
}