/* Hizmet Detay Sayfası Modern Stilleri */

.service-detail-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.service-hero-card:hover {
    transform: translateY(-5px);
}

.service-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.service-content-card:hover {
    transform: translateY(-2px);
}

.modern-content h3 {
    color: #27436F;
    border-bottom: 3px solid #0082ca;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
    display: inline-block;
}

.modern-content h4 {
    color: #27436F;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.modern-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    border-radius: 8px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: #0082ca;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,130,202,0.15);
}

.feature-item i {
    font-size: 2rem;
    margin-right: 20px;
}

.feature-item h5 {
    margin: 0;
    color: #27436F;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-item p {
    margin: 5px 0 0 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #27436F, #0082ca);
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    background: white;
    color: #27436F;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    border: none;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: #27436F;
    text-decoration: none;
}

.cta-section .btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Renk Sınıfları */
.text-primary { color: #27436F !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #0082ca !important; }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .service-content-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .modern-content h3 {
        font-size: 1.5rem;
    }
    
    .modern-content h4 {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* Animasyonlar */
.service-hero-card,
.service-content-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* İkon Hover Efektleri */
.modern-content i {
    transition: all 0.3s ease;
}

.modern-content i:hover {
    transform: scale(1.1);
}

/* Liste Öğelerinde Hover Efekti */
.modern-content ul li {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 5px 0;
}

.modern-content ul li:hover {
    background-color: rgba(0,130,202,0.1);
    transform: translateX(5px);
}

/* Modern Sidebar Stilleri */
.sidebar-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 40px;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.sidebar-modern:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.sidebar-widget h4 {
    color: #27436F;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 3px solid #0082ca;
    padding-bottom: 15px;
    display: inline-block;
}

.sidebar-widget h4 i {
    margin-right: 10px;
    color: #0082ca;
}

/* Hizmet Linkleri */
.service-link {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #27436F;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-link:hover {
    background: white;
    border-color: #0082ca;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,130,202,0.2);
    text-decoration: none;
    color: #27436F;
}

.service-link i:first-child {
    width: 20px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.service-link span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-link i:last-child {
    color: #6c757d;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-link:hover i:last-child {
    color: #0082ca;
    transform: translateX(3px);
}

/* Tüm Sigortalar Özel Butonu */
.all-services {
    background: linear-gradient(135deg, #27436F, #0082ca) !important;
    color: white !important;
    font-weight: 600;
    margin-top: 20px;
    padding: 18px;
}

.all-services:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(39, 67, 111, 0.4) !important;
    color: white !important;
    border-color: transparent !important;
}

.all-services i {
    color: white !important;
}

/* İletişim Widget */
.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.contact-item a {
    color: #27436F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0082ca;
    text-decoration: none;
}

.contact-cta {
    margin-top: 20px;
    text-align: center;
}

.contact-cta .btn {
    background: #28a745;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    background: #218838;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Hızlı Teklif Widget */
.quick-quote {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.quick-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.quick-quote i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.quick-quote h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.quick-quote p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.quick-quote a {
    background: white;
    color: #fd7e14;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.quick-quote a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #fd7e14;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .sidebar-modern {
        position: static;
        top: auto;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .sidebar-modern {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .sidebar-widget h4 {
        font-size: 1.3rem;
    }
    
    .service-link {
        padding: 12px;
    }
    
    .service-link span {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .quick-quote {
        padding: 20px;
    }
}