
        /* İletişim Sayfası Özel Stilleri */
        .contact-section {
            padding: 40px 0;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            padding: 25px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-icon-page {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e8f4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #2a4365;
            font-size: 24px;
        }
        
        .contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 15px;
        }
        
        .contact-info-page {
            color: #4a5568;
            line-height: 1.7;
        }
        
        .contact-info-page p {
            margin-bottom: 8px;
        }
        
        /* Sosyal Medya Stilleri */
        .contact-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .contact-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f7fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-social-link:hover {
            background: #2a4365;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Harita Stilleri */
        .contact-map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 400px;
        }
        
        .contact-map {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Hizmet Noktaları Stilleri */
        .service-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .service-filter-btn {
            padding: 10px 20px;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-filter-btn.active, .service-filter-btn:hover {
            background: #2a4365;
            color: white;
            border-color: #2a4365;
        }
        
        .service-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            min-height: 300px;
        }
        
        .service-item {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-item-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 10px;
        }
        
        .service-item-location {
            color: #718096;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .service-item-action {
            display: inline-flex;
            align-items: center;
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .service-item-action:hover {
            color: #2a4365;
        }
        
        .service-item-action i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-item-action:hover i {
            transform: translateX(3px);
        }
        
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #2a4365;
        }
        
        /* Sayfalama Stilleri */
        .service-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-link {
            color: #2a4365;
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            margin: 0 4px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .page-link:hover {
            background-color: #2a4365;
            color: white;
            border-color: #2a4365;
        }
        
        .page-item.active .page-link {
            background-color: #2a4365;
            border-color: #2a4365;
            color: white;
        }
        
        /* Arama Kutusu Stilleri */
        .service-search-container {
            margin-bottom: 25px;
        }
        
        .select2-container--bootstrap-5 .select2-selection {
            min-height: 48px;
            display: flex;
            align-items: center;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .select2-container--bootstrap-5 .select2-selection:focus {
            border-color: #2a4365;
            box-shadow: 0 0 0 0.25rem rgba(42, 67, 101, 0.25);
        }
        
        .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
            padding-left: 16px;
            font-size: 1rem;
        }
        
        /* Responsive Düzenlemeler */
        @media (max-width: 768px) {
            .service-filter {
                overflow-x: auto;
                padding-bottom: 10px;
                flex-wrap: nowrap;
            }
            
            .service-items {
                grid-template-columns: 1fr;
            }
            
            .service-pagination {
                flex-wrap: wrap;
            }
            
            .page-link {
                padding: 6px 12px;
                margin: 2px;
                font-size: 0.9rem;
            }
        }